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

Active Listings

{% if Listings %}
{% for listing in Listings %} {% if not listing.closed %}
Preview not found

{{ listing.title }}


{% for bidding in listing.bidding_listing.all %} bid price : ${{bidding.bid_value}}
Last bid by: {{ bidding.user }}
Description: {{ listing.desc }}
{% endfor %} 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 %}
{% endif %} {% endfor %}
{% else %}


Seems to be no listings in this Auction!!

{% endif %} {% endblock %}