{% extends "register/base.html" %} {% load crispy_forms_tags %} {% block registration_page %} {% if not attendee.billable %} {% if attendee.user.bursary %}

As you have a bursary request, we have nothing to invoice at this time.

{% else %} {% endif %} {% elif attendee.paid %} {% elif will_reinvoice %} {% elif attendee.new_invoices.exists %} {% endif %} {% if invoice %}

Pro-Forma Invoice

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