{% extends "coachreports/base.html" %} {% load i18n %} {% load kalite_staticfiles %} {% load my_filters %} {% block i18n_do_not_translate %} {% block coachreports_active %}active{% endblock coachreports_active %} {% endblock i18n_do_not_translate %} {% block title %}{{ test_obj.title }} {{ block.super }}{% endblock title %} {% block headcss %}{{ block.super }} {% endblock headcss %} {% block headjs %} {{block.super}} {% endblock headjs %} {% block report_title %} {{ test_obj.title }} {% trans "Results" %} {% endblock report_title %} {% block report_content %} {% block navbar_title %}{{ block.super }}{% endblock navbar_title %}

← {% trans "Back" %}

{# Select the test to view #} {% if test_options %}
{% trans "Select Exam" %}
{% else %}
{% trans "No other tests available to view" %}
{% endif %}
80-100%
60-79%
0-59%
{% if not results_table %}

{% if not groups.0.groups and not groups.1 and request.GET.topic %} {% comment %}No groups available: then "ungrouped" is selected, and "no students" returned.{% endcomment %} {% trans "No learner accounts have been created." %} {% elif not results_table %} {% comment %}Group was selected, but data not queried because a topic was not selected (NOTE: this required knowledge of how the view queries data){% endcomment %} {% trans "No exam results for this group." %} {% else %} {% comment %}Everything specified, but no users fit the query.{% endcomment %} {% trans "No learner accounts in this group have been created." %} {% endif %}

{% else %} {# Student Table #}
{% for student in results_table.keys %} {% endfor %} {% for stat in stats_dict.keys %} {% endfor %}
{% trans "Learner" %}
{{ student.name }}
{{ stat }}
{% for ex in ex_cols %} {% endfor %} {% for results in results_table.values %} {% for r in results %} {% if r.raw_score == '' %} {% else %} {% endif %} {% endfor %} {% endfor %} {% for stats in stats_dict.values %} {% for stat in stats %} {% endfor %} {% endfor %}
{% trans ex %} {% trans "Overall" %}
{{ r.display_score }}
{{stat}}
{% endif %} {% endblock report_content %}