{% extends 'base.html' %} {% load crispy_forms_tags %} {% load currency_filters %} {% block title %} Problems with {{ tos.name }} {% endblock %} {% load static %} {% block extra_js %} {% endblock %} {% block content %} {% include 'auction_ribbon.html' %}
| # | Lot | Pre-refund price (includes tax) | Refund | Winner | Winner's invoice status |
|---|---|---|---|---|---|
| {{ lot.lot_number_display }} | {{ lot.lot_name }} | {% if lot.winning_price %} {{ lot.currency_symbol }}{{ lot.full_buyer_refund|floatformat:2 }} {% else %} {% if lot.banned %} Removed {% else %} Not sold {% endif %} {% endif %} | {% if lot.partial_refund_percent %}({{ lot.partial_refund_percent }}% refund){% endif %} | {% if lot.winning_price %} {{ lot.winner_name }} {% else %} Not sold {% endif %} | {{ lot.auctiontos_winner.invoice.get_status_display }} |
| # | Lot | Seller | Seller's cut (includes refund) | Refund | Seller's invoice status |
|---|---|---|---|---|---|
| {{ lot.lot_number_display }} | {{ lot.lot_name }} | {{ lot.seller_name }} | {{ lot.currency_symbol }}{{ lot.your_cut|floatformat:2 }} | {% if lot.partial_refund_percent %}({{ lot.partial_refund_percent }}% refund){% endif %} | {{ lot.auctiontos_seller.invoice.get_status_display }} |