{% extends "auctions/layout.html"%} {% block body %}

Listings under category "{{ cat_name }}"

{% if listings %}
{% for list in listings %}
Preview not found

{{ list.title }}


bid price : ${{list.price}}
created by: {{list.user}}

{% if user.is_authenticated %}
{% csrf_token %} {% if user not in list.watchlists.all %} {% else %} {% endif %}
{% else %} log in to watch this listing {% endif %}
{% endfor %}
{% else %}


Seems to be no listings in this category

{% endif %} {% endblock %}