{% extends "register/base.html" %} {% load crispy_forms_tags %} {% block registration_page %} {% if not attendee.billable %} {% elif attendee.paid %} {% elif will_reinvoice %} {% elif attendee.new_invoices.exists %} {% endif %} {% if invoice %}

Pro-Forma Invoice

{% for line in invoice.lines %} {% endfor %}
Description Unit Price Qty Sub-Total
{{ line.description }} $ {{ line.unit_price }} {{ line.quantity }} $ {{ line.total }}
Total (USD) $ {{ invoice.total }}
Total ({{ DEBCONF_LOCAL_CURRENCY }}) {{ DEBCONF_LOCAL_CURRENCY_SYMBOL }} {{ invoice.total_local }}
{% endif %} {% if attendee.billable %} {% crispy form %} {% endif %} {% endblock %}