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

Active Listings

{% for listing in Listings %}
Preview not found

{{ listing.title }}


bid price : ${{listing.price}}
created by: {{listing.user}}
created on {{listing.date_added}}

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