diff --git a/pinaxcon/templates/registrasion/_invoice_details.html b/pinaxcon/templates/registrasion/_invoice_details.html deleted file mode 100644 index cfd18cbb823a6542d218161badbff2331b859ce6..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/_invoice_details.html +++ /dev/null @@ -1,57 +0,0 @@ -{% load registrasion_tags %} - -

Invoice

- -{% with invoice_user=invoice.cart.user %} - -{% endwith %} - -

This invoice has been issued as a result of an application to attend (conference name).

- - - - - - - - - - {% for line_item in invoice.lineitem_set.all %} - - - - - - - {% endfor %} - - - - - -
DescriptionQuantityPrice/UnitTotal
{{ line_item.description }}{{ line_item.quantity }}${{ line_item.price }}${{ line_item.total_price }}
TOTAL${{ invoice.value }}
- - - - - - - - - - - -
Total payments:${{ invoice.total_payments }}
Balance due:${{ invoice.balance_due }}
- -{% if invoice.paymentbase_set.all %} -

Payments received

- {% include "registrasion/payment_list.html" with payments=invoice.paymentbase_set.all %} -{% endif %}