{% 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 }}
{% trans "You currently have no data available." %}
{% else %}| {% 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 }} |
{% trans "You currently have no data available." %}
{% else %}| {% 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 }} |