{% extends "cms/home.html" %} {% load danceschool_tags sekizai_tags cms_tags i18n %} {% block content %} {% if request.user == object %}
{% trans "Month" %} | {% trans "Series/Event Name" %} | {% if staffmember.instructor %}{% trans "Teaching Partner" %}{% else %}{% trans "Other Staff" %}{% endif %} | {% trans "Location" %} | {% trans "Start Time" %} | {% trans "Students Registered" %} |
---|---|---|---|---|---|
{{ series.month|readable_month }} {{ series.year }} | {{ series.classDescription.title }} | {% for this_instructor in series.teachers %} {% if this_instructor.fullName != staffmember.fullName %} {{ this_instructor.fullName }} {% endif %} {% endfor %} | {{ series.location.name }}{% if series.room.name %} - {{ series.room.name }}{% endif %} | {{ series.startTime|date:'l, h:i A' }} | {{ series.numRegistered }} |
{% trans "Month" %} | {% trans "Series Name" %} | {% trans "Location" %} | {% trans "Class Time" %} | {% trans "Instructors" %} |
---|---|---|---|---|
{{ event.month|readable_month }} {{ event.year }} | {{ event.name }} | {{ event.location.name }}{% if event.room.name %} - {{ event.room.name }}{% endif %} | {{ event.startTime|date:'D., h:i A' }} | {% for instructor in event.teachers %} {{ instructor.fullName }}{% if not forloop.last %}, {% endif %} {% endfor %} | {% endwith %}
{% trans "Show all" %} |
{% blocktrans %}It looks like you are not yet a customer. Perhaps you would like to register for some classes?{% endblocktrans %}
{% endif %} {# Other Series Registered From Verified Email Addresses #} {% if verified_eventregs %}{% trans "Month" %} | {% trans "Series Name" %} | {% trans "Location" %} | {% trans "Class Time" %} | {% trans "Instructors" %} |
---|---|---|---|---|
{{ event.month|readable_month }} {{ event.year }} | {{ event.name }} | {{ event.location.name }}{% if event.room.name %} - {{ event.room.name }}{% endif %} | {{ event.startTime|date:'D., h:i A' }} | {% for instructor in event.teachers %} {{ instructor.fullName }}{% if not forloop.last %}, {% endif %} {% endfor %} | {% endwith %}
{% trans "Show all" %} |
{% trans "Registered As" %} | {% trans "Month" %} | {% trans "Series Name" %} | {% trans "Location" %} | {% trans "Class Time" %} | {% trans "Instructors" %} |
---|---|---|---|---|---|
{{ eventreg.registration.fullName }}: {{ eventreg.registration.customer.email }} | {% with eventreg.event as event %}{{ event.month|readable_month }} {{ event.year }} | {{ event.name }} | {{ event.location.name }}{% if event.room.name %} - {{ event.room.name }}{% endif %} | {{ event.startTime|date:'D., h:i A' }} | {% for instructor in event.teachers %} {{ instructor.fullName }}{% if not forloop.last %}, {% endif %} {% endfor %} | {% endwith %}
{% trans "Show all" %} |