diff --git a/pinaxcon/templates/registrasion/_invoice_details.html b/pinaxcon/templates/registrasion/_invoice_details.html new file mode 100644 index 0000000000000000000000000000000000000000..b20e45a16bbfd416328957f23867d306a230e8bb --- /dev/null +++ b/pinaxcon/templates/registrasion/_invoice_details.html @@ -0,0 +1,46 @@ +{% 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.price|multiply:line_item.quantity }}
TOTAL${{ invoice.value }}
+ +{% if invoice.paymentbase_set.all %} +

Payments received

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