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

Listing : {{ Listing.title}}


{{Listing.desc}}

${{Listing.price}}

bids so far

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 %}