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

Problems with {{ tos.name }}?

If this user won lots and didn't pay, broke rules, or caused issues for others in this auction, this page will allow you to take action against them.

You can click Take Action to refund lots, leave negative feedback about this user, and/or ban them from future auctions.

When issuing a refund, if the invoice is open, no further action is needed. If the invoice is paid, you should send money (the amount shown) back to the user who paid.

Take Action

Lots Sold

{% for lot in sold_lots %} {% endfor %}
# 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 }}

Lots purchased

{% for lot in bought_lots %} {% endfor %}
# 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 }}
{% endblock %}