{% extends "registrasion/base.html" %} {% load bootstrap %} {% load pyconau2017_tags %} {% block header_title %}Buy Your Ticket{% endblock %} {% block header_paragraph %}Step {{ current_step }} of {{ total_steps|add:1 }} – {{ title }} {% endblock %} {% block scripts_extra %} {% for section in sections %} {{ section.form.media.js }} {% endfor %} {% endblock %} {% block content %}
{% csrf_token %} {% for section in sections %}

{{ section.title }}

{% if section.description %}
{{ section.description|safe }}
{% endif %}
{% if section.discounts %} {% include "registrasion/discount_list.html" with discounts=section.discounts %}
You must select a product to receive any discounts.
Applicable discounts will be applied automatically when you check out.

{% endif %}

Available options

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

{% endfor %}
{% endblock %}