{% extends "registrasion/base.html" %} {% load bootstrap %} {% load registrasion_tags %} {% load pyconau2017_tags %} {% block header_title %}Product Category: {{ category.name }}{% endblock %} {% block header_inset_image %}{% illustration "lavender.svg" %}{% endblock %} {% block scripts_extra %} {{ voucher_form.media.js }} {{ form.media.js }} {% endblock %} {% block content %}
{% csrf_token %}
{% 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 %}

{{ category.name }}

{{ category.description|safe }}
{% if discounts %}

Discounts and Complimentary Items

{% include "registrasion/discount_list.html" with discounts=discounts %}
Any applicable discounts will be applied automatically when you check out.

{% endif %}

Make a selection

{% include "_form_snippet.html" with form=form %}
{% endblock %}