diff --git a/pinaxcon/templates/registrasion/base.html b/pinaxcon/templates/registrasion/base.html deleted file mode 100644 index d6a6615bb97e98750bea7887467c6406180605b1..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/base.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "site_base.html" %} - -{% block body_outer %} - {% block body %}{% endblock %} -{% endblock %} diff --git a/pinaxcon/templates/registrasion/product_category.html b/pinaxcon/templates/registrasion/product_category.html deleted file mode 100644 index 4322f38f6f77a2b1d8c6fb75f984dbd652f32d68..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/product_category.html +++ /dev/null @@ -1,47 +0,0 @@ -{% extends "registrasion/base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} -{% block body %} - -

Product Category: {{ category.name }}

- -
- {% csrf_token %} - - - {{ voucher_form | bootstrap }} -
- -
- -
- - {% items_purchased category as items %} - {% if items %} -

Paid items

-

You have already paid for the following items:

- {% include "registrasion/_items_list.html" with items=items %} - {% endif %} - - - {% if discounts %} -

Available Discounts

- {% include "registrasion/discount_list.html" with discounts=discounts %} - {% endif %} - -

Available Products

-

{{ category.description }}

- - {{ form | bootstrap }} -
- -
- - Return to dashboard -
- - -
- - -{% endblock %}