diff --git a/pinaxcon/templates/registrasion/product_category.html b/pinaxcon/templates/registrasion/product_category.html new file mode 100644 index 0000000000000000000000000000000000000000..85c5a8909b1701e892523931b05135fab424279f --- /dev/null +++ b/pinaxcon/templates/registrasion/product_category.html @@ -0,0 +1,45 @@ +{% 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 }} +
+ +
+ +
+ +
+ + +{% endblock %}