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