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

Listing : {{ Listing.title}}

{% if user.username|stringformat:"s" == Listing.user|stringformat:"s" %} Close this Listing {% endif %}
{% csrf_token %} {% if user not in Listing.watchlists.all %} {% else %} {% endif %}

{{Listing.desc}}

${{bids.bid_value}}

bids so far {% if user.is_authenticated %}
{% csrf_token %}
{% else %}
Log In to bid on this Listing {% endif %}

Comments ...

{% if not Listing.comments.all %} No comments Yet....


{% else %} {% for comment in Listing.comments.all %} {{comment.user}} - {{comment.date_added}}
{{ comment.body }}

{% endfor %} {% endif %} {% if user.is_authenticated %}
Add comment

{% csrf_token %}

{% else %}

Log In to comment on this listing {% endif %} {% endblock %}