{% blocktrans with month=seriesset.0.month|readable_month year=seriesset.0.year title=seriesset.0.classDescription.title %} {{ month }} {{ year }}: {{ title }} {% endblocktrans %}
{% for series in seriesset %} {% if series.teachers %} {% endif %} {% if not series.special %}{% blocktrans with weekday=series.startTime|date:'l' startTime=series.startTime|date:'h:i A' location=series.location startDate=series.startTime|date:'F jS' %} {{ weekday }}s, {{ startTime }} at {{ location }}, Beginning {{ startDate }} {% endblocktrans %}
{% else %}{% blocktrans with startTime=series.startTime|date:'l, F jS, h:i A' location=series.location %} Begins {{ startTime }} at {{ location }} {% endblocktrans %}
{% endif %} {% if series.teachers %}{% trans "With" %} {% for teacher in series.teachers %} {{ teacher.firstName }} {{ teacher.lastName }}{% if not forloop.last %} {% trans "and" %} {% endif %} {% endfor %}
{% trans "Class Schedule" %}:
{% for class in series.eventoccurrence_set.all reversed %}
{{ class.startTime|date:'F j, h:i' }} - {{ class.endTime|date:'h:i A' }}
{% endfor %}
{{ series.location.name }}{% if series.room.name %} - {{ series.room.name }}{% endif %}
{{ series.location.address }}
{{ series.location.city }}, {{ series.location.state }} {{ series.location.zip }}
{% trans "More Info" %}
{% trans "Pricing" %}: {{ series.pricingTier.name }} {% trans "pricing" %}
{% endif %}{% if not series.soldOut and not series.registrationClosed %} {% trans "Register for this class!" %} {% elif series.soldOut %} {% trans "Sold out!" %} {% else %} {% trans "Registration closed!" %} {% endif %}
{% if 'core.change_series' in perms %}{% trans "Edit Class Details" %}
{% endif %} {% if 'core.view_registration_summary' in perms %}{% trans "View Registrations" %}
{% endif %}{% endfor %}
{% trans "Class Description" %}
{% render_model seriesset.0.classDescription "description" "" "" "safe" %}