{% extends "cms/admin_home.html" %} {% load danceschool_tags thumbnail i18n %} {% block content %}

{% blocktrans with name=instructor.fullName %} Instructor Teaching Stats for {{ name }} {% endblocktrans %}

{% trans "Basic Info" %}
{% trans "Teaching Since" %}:
{{ teaching_since }}
{% trans "Classes Taught" %}:
{{ series_count }}
{% trans "Total Students Taught" %}:
{{ student_count }}
{% if instructor.feedKey %}
{% trans "Link To Your Calendar Feeds" %}:
{% trans "Your Classes" %} {% url 'privateCalendarFeed' instructor.feedKey as private_feed %}{% if private_feed %}{% trans "Private Events & Reminders" %}{% endif %} ({% trans "copy and paste these URLs to add them to Google Calendar, etc." %})
{% endif %}

{% trans "Upcoming Series" %}

{% for series in upcoming_series %} {% endfor %}
{% trans "Month" %}{% trans "Series Name" %}{% trans "Teaching Partner" %}{% trans "Location" %}{% trans "Class Time" %}{% trans "Students Registered" %}
{{ series.month|readable_month }} {{ series.year }} {{ series.classDescription.title }} {% for this_instructor in series.teachers %} {% if this_instructor.fullName != instructor.fullName %} {{ this_instructor.fullName }}  {% endif %} {% endfor %} {{ series.location.name }} {{ series.startTime|date:'l, h:i A' }} {{ series.numRegistered }}

{% trans "Prior Series" %}

{% for series in prior_series %} {% endfor %}
{% trans "Month" %}{% trans "Series Name" %}{% trans "Teaching Partner" %}{% trans "Location" %}{% trans "Class Time" %}{% trans "Students Registered" %}
{{ series.month|readable_month }} {{ series.year }} {{ series.classDescription.title }} {% for this_instructor in series.teachers %} {% if this_instructor.fullName != instructor.fullName %} {{ this_instructor.fullName }}  {% endif %} {% endfor %} {{ series.location.name }} {{ series.startTime|date:'l, h:i A' }} {{ series.numRegistered }}
{% endblock %}