{% 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 item.dropIn %}{% trans "DROP IN" %}: {% endif %}{{ item.event.name }}{% if item.role %} - {{ item.role.name }}{% endif %} {{ currencySymbol }}{{ item.price|floatformat:2 }}
{% trans "Subtotal before discounts:" %} {{ currencySymbol }}{{ 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 %}