{% extends "base.html" %} {% block title %} Leave feedback {% endblock %} {% load static %} {% block extra_js %} {% endblock %} {% block content %} See feedback that's been left for you on your account page

{% if not won_lots and not sold_lots%}
Once you've bought or sold lots, you'll be able to leave feedback here
{% endif %} {% if won_lots %}
Leave feedback for sellers on lots you bought
{% for lot in won_lots %} {% endfor %}
Lot Seller Rating Comments
{{ lot.lot_name }} {{ lot.seller_as_str }}
{% endif %} {% if sold_lots %}
Leave feedback for winners of lots you sold
{% for lot in sold_lots %} {% endfor %}
Lot Winner Rating Comments
{{ lot.lot_name }} {{ lot.winner_as_str }}
{% endif %} {% endblock %}