{% extends "cms/home.html" %} {% load crispy_forms_tags i18n %} {% block title %}{% trans "Classes" %}{% endblock %} {% block body_id %}classes{% endblock %} {% block content %} {% block summary %}
{% for id,series in regInfo.series.items %} {% endfor %} {% for id,event in regInfo.events.items %} {% endfor %}
{% trans "You've selected:" %}
{{ series.name }}{% if series.role_name %} - {{ series.role_name }}{% endif %} {{ currencySymbol }}{{ series.base_price|floatformat:2 }}
{{ event.name }} {{ currencySymbol }}{{ event.base_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 %}