{% load my_filters %} {% load i18n %} {% load staticfiles %}
{% trans "Ungrouped" as ungrouped %}
{% if group_id and group_data %} {# comment "First block is a group summary page for a single group's display" #} {% include "control_panel/partials/_group_summary.html" %} {% else %}

{% trans "Learner Groups" %}

{% if not groups %}

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

{% else %} {% if not request.is_teacher %}

{% endif %}
{% for group in groups %} {% if group.name != ungrouped or group.total_users != 0 %} {% endif %} {% endfor %} {# 10x td for table formatting purposes #}
{% if group.id %}{% endif %} {# Translators: this is a verb; by clicking this link, the user will be able to coach students. #} {% else %} href="{% url 'group_management' zone_id=zone_id facility_id=facility_id group_id=ungrouped_id %}"> {% endif %} {{ group.name }} {% if group.id %} {% trans 'Edit group' %} {% else %} N/A {% endif %} {# Translators: this is a verb; by clicking this link, the user will be able to coach students. #}
{{ group.total_users }} {{ group.total_logins }} {{ group.total_hours|floatformat }} {% trans "hour(s)" %} {{ group.total_videos }} {{ group.total_exercises }} {{ group.pct_mastery|percent:1 }}
{% endif %} {% endif %}