diff --git a/registrasion/templates/invoice.html b/registrasion/templates/invoice.html deleted file mode 100644 index bd503657..00000000 --- a/registrasion/templates/invoice.html +++ /dev/null @@ -1,51 +0,0 @@ - - -{% extends "site_base.html" %} -{% block body %} - -

Invoice {{ invoice.id }}

- - - - - - - - - - - {% for line_item in invoice.lineitem_set.all %} - - - - - - - {% endfor %} - - - - - - -
DescriptionQuantityPrice/UnitTotal
{{line_item.description}}{{line_item.quantity}}{{line_item.price}} FIXME
TOTAL{{ invoice.value }}
- - - - - - - - {% for payment in invoice.payment_set.all %} - - - - - - {% endfor %} -
Payment timeReferenceAmount
{{payment.time}}{{payment.reference}}{{payment.amount}}
- -{% endblock %} diff --git a/registrasion/templates/product_category.html b/registrasion/templates/product_category.html deleted file mode 100644 index fb54a58d..00000000 --- a/registrasion/templates/product_category.html +++ /dev/null @@ -1,50 +0,0 @@ - - -{% extends "site_base.html" %} -{% block body %} - -

Product Category: {{ category.name }}

- -
- {% csrf_token %} - - - {{ voucher_form }} -
- -

- - {% if discounts %} -

Available Discounts

- - {% endif %} - -

Available Products

-

{{ category.description }}

- - {{ form }} -
- -

- -
- - -{% endblock %} diff --git a/registrasion/templates/profile_form.html b/registrasion/templates/profile_form.html deleted file mode 100644 index 56f3010c..00000000 --- a/registrasion/templates/profile_form.html +++ /dev/null @@ -1,22 +0,0 @@ - - -{% extends "site_base.html" %} -{% block body %} - -

Attendee Profile

- -

Something something fill in your attendee details here!

- -
- {% csrf_token %} - - - {{ form }} -
- - - -
- - -{% endblock %}