{% extends "registrasion/base.html" %} {% load lca2018_tags %} {% block page_title %}Buy Your Ticket{% endblock %} {% block page_lead %}Step {{ current_step }} of {{ total_steps|add:1 }} – {{ title }} {% endblock %} {% block scripts_extra %} {% for section in sections %} {{ section.form.media.js }} {% endfor %} {% endblock %} {% block proposals_body %}
{% 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 %} {% endif %} {% include "_form_snippet.html" with form=section.form %}
{% endfor %} {% if current_step > 1 %} Back {% endif %}
{% endblock %}