{% extends "base.html" %} {% load currency_filters %} {% block title %}Invoices{% endblock %} {% load static %} {% block content %}
| 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. | |||