From 5e0c87c435769d06727647b1805b3f1609b2be2b Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Thu, 31 Mar 2016 18:59:43 +1100 Subject: [PATCH] =?UTF-8?q?Deletes=20templates=20=E2=80=94=20moved=20to=20?= =?UTF-8?q?registrasion-demo=20repo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- registrasion/templates/invoice.html | 51 -------------------- registrasion/templates/product_category.html | 50 ------------------- registrasion/templates/profile_form.html | 22 --------- 3 files changed, 123 deletions(-) delete mode 100644 registrasion/templates/invoice.html delete mode 100644 registrasion/templates/product_category.html delete mode 100644 registrasion/templates/profile_form.html 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 %}