{% extends "cms/home.html" %} {% load crispy_forms_tags i18n %} {% block title %}{% trans "Classes" %}{% endblock %} {% block body_id %}classes{% endblock %} {% block content %} {% block summary %}
{% trans "You've selected:" %}
{% for item in reg.temporaryeventregistration_set.all %} {% endfor %} {% if addonItems %} {% for addon in addonItems %} {% endfor %} {% endif %} {% if discount_code_amount > 0 %} {% for code in discount_codes %} {% endfor %} {% endif %}
{% if item.dropIn %}{% trans "DROP IN" %}: {% endif %}{{ item.event.name }}{% if item.role %} - {{ item.role.name }}{% endif %} {{ currencySymbol }}{{ item.price|floatformat:2 }}
{% trans "Free Add-On" %}:{{ addon.name }}
{% trans "Discount Code Applied" %}: {{ code.0 }} -{{ currencySymbol }}{{ code.2|floatformat:2 }}
{% trans "Subtotal" %}: {{ currencySymbol }}{{ discounted_subtotal|floatformat:2 }}
{% endblock %} {# Display any warning or error messages associated with the previous form submission #}
{% for message in messages %}
{{ message }}
{% endfor %}
{% block form %}

{% trans "Step 2: Provide Your Student Information" %}

{% if show_ajax_form %} {% include "account/ajax_login.html" %}
{% endif %}
{% csrf_token %} {% crispy form %}
{% if show_ajax_form %}
{% endif %} {% endblock %} {% endblock %}