{% extends "base.html" %} {% load currency_filters %} {% block title %}Invoices{% endblock %} {% load static %} {% block content %}
Invoices
This is a list of invoices for auctions you've participated in. If you didn't buy or sell any lots in an auction, you won't get an invoice.

{% for invoice in object_list %} {% empty %} {% endfor %}
Invoice Total Status Date
{{ invoice.label }} {% if invoice.user_should_be_paid or invoice.net == 0 %} {{ invoice.currency_symbol }}{{ invoice.calculated_total|floatformat:2 }} {% else %} ({{ invoice.currency_symbol }}{{ invoice.absolute_amount|floatformat:2 }}) {% endif %} {{ invoice.get_status_display }} {{ invoice.date }}
You don't have any invoices yet. An invoice is created automatically once you buy or sell a lot in an auction.
{% endblock %} {% block extra_js %}{% endblock %}