{% extends "cms/home.html" %} {% load crispy_forms_tags i18n %} {% block title %}{% trans "Schedule a Private Lesson" %}{% endblock %} {% block body_id %}privatelessons{% endblock %} {% block content %} {% block summary %}
{% trans "You've selected:" %}
{% blocktrans with lesson_teachers=teachers|join:" and " location=lesson.location.name|default:"unspecified location" %}Private lesson with {{ lesson_teachers }} at {{ location }}{% endblocktrans %} {{ lesson.startTime|date:"D., N jS Y, P" }} - {{ lesson.endTime|date:"P" }}
{% 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 %}