{% extends "control_panel/base_printable.html" %} {% load i18n %} {% load my_filters %} {% block title %}{{ facility.name }} - {% trans "Facility Usage" %}{{ block.super }}{% endblock title %} {% block headjs %}{{ block.super }} {% endblock headjs %} {% block buttons %}{{ block.super }}
  • {% csrf_token %}
  • {% endblock buttons %} {% block control_panel_content %}

    {% trans "Groups" %}

    {% if not groups %}

    {% trans "You currently have no data available." %}

    {% else %} {% for id, group in groups.items %} {% endfor %}
    {% trans "Group Name" %} {% trans "# Students" %} {% trans "Logins" %} {% trans "Login Time" %} {% trans "Videos Viewed" %} {% trans "Exercises Completed" %} {% trans "Mastery " %}
    {{ group.name }} {% if id %} [ {# Translators: this is a verb; by clicking this link, the user will be able to coach students. #} {% trans "coach" %} / {# Translators: this is a verb; by clicking this link, the user will be able to manage student accounts. #} {% trans "manage" %} ] {% endif %} {{ group.total_users }} {{ group.total_logins }} {{ group.total_hours|floatformat }} {{ group.total_videos }} {{ group.total_exercises }} {{ group.pct_mastery|percent:1 }}
    {% endif %}

    {% trans "Student Usage Reports" %}

    {% if not students %}

    {% trans "You currently have no data available." %}

    {% else %} {% for id, student in students.items %} {% endfor %}
    {% trans "Student Name" %} {% trans "Group" %} {% trans "Logins" %} {% trans "Login Time" %} {% trans "Videos Viewed" %} {% trans "Exercises Completed" %} {% trans "Mastery" %}
    {{ student|format_name:"last_first" }} {% if student.group %} {{ student.group.name }} {% endif %} {{ student.total_logins }} {{ student.total_hours|floatformat }} {{ student.total_videos }} {{ student.total_exercises }} {{ student.pct_mastery|percent:1 }}
    {% endif %}
    {% endblock control_panel_content %}