{% extends "core/registration/base_event_registration.html" %} {% load cms_tags thumbnail i18n %} {% block top %} {% with allEvents.first as event %}

{{ event.name }}

{% if event.teachers %}

{% trans "With" %} {% for teacher in event.teachers %} {{ teacher.firstName }} {{ teacher.lastName }}{% if not forloop.last %} {% trans "and" %} {% endif %} {% endfor %}

{% for teacher in event.teachers %} {% if not teacher.assistant %} {{teacher.firstName}} {{teacher.lastName}} {% endif %} {% endfor %}
{% endif %} {% if 'core.change_series' in perms and event.series %}

{% trans "Edit Class Details" %}

{% endif %} {% if 'core.view_registration_summary' in perms %}

{% trans "View Registrations" %}

{% endif %}

{% trans "Class Schedule" %}:
{% for class in event.eventoccurrence_set.all %} {{ class.startTime|date:'F j, h:i' }} - {{ class.endTime|date:'h:i A' }}
{% endfor %}

{{ event.location.name }}{% if event.room.name %} - {{ event.room.name }}{% endif %}
{{ event.location.address }}
{{ event.location.city }}, {{ event.location.state }} {{ event.location.zip }}
{% page_url 'directions' as directions_url %} {% if directions_url %}{% trans "More Info" %}{% endif %}


{{ event.description }}

{% endwith %} {% endblock %} {# No need to report coming soon like on the regular registration page #} {% block coming_soon %}{% endblock %} {% block registration_form %}
{{ block.super }}
{% endblock %}