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

{% trans "School Performance Statistics" %}

{% trans "Total # Students" %}: {{ totalStudents }}
{% trans "Total # Series Taught" %}: {{ numSeries }}
{% trans "Total # Series Registrations" %}: {{ totalSeriesRegs }}
{% trans "Total Time Studio in Existence" %}: {{ totalTime }}
{% static_placeholder 'stats_graphs' %}

{% trans "Top Students and Teachers" %}

{% for customer in bestCustomersAllTime %} {% endfor %}
{% trans "All Time Top Customers" %}
{% trans "Name" %}{% trans "# Classes Taken" %}
{{ customer.first_name }} {{ customer.last_name}} {{ customer.eventregistration__count }}
{% for customer in bestCustomersLastTwelveMonths %} {% endfor %}
{% trans "Top Customers of the Last 12 Months" %}
{% trans "Name" %}{% trans "# Classes Taken" %}
{{ customer.first_name }} {{ customer.last_name}} {{ customer.eventregistration__count }}
{% for teacher in mostActiveTeachersThisYear %} {% endfor %}
{% trans "Most Active Teachers of This Calendar Year" %}
{% trans "Name" %}{% trans "# Classes Taught" %}
{{ teacher.0 }} {{ teacher.1 }} {{ teacher.2 }}

{% endblock %}