{% 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 %}