{% extends "coachreports/base.html" %} {% load i18n %} {% load kalite_staticfiles %} {% load my_filters %} {% block i18n_do_not_translate %} {% block teacher_active %}active{% endblock teacher_active %} {% block admin_active %}active{% endblock admin_active %} {% block title %}{% trans "Progress by topic" %} | {{ block.super }}{% endblock title %} {% block coachnav %}progress-tab-active{% endblock coachnav %} {% block progress_active %}sub-active{% endblock progress_active %} {% endblock i18n_do_not_translate %} {% block headcss %}{{ block.super }} {% endblock headcss %} {% block headjs %}{{ block.super }} {% endblock headjs %} {% block report_content %}
{# Select the coach report type #} {% if report_types %} {% else %} {% endif %}
{% if users and request_report_type == "student" %}
{% elif groups %} {% if playlists %}
{% elif topics %}
{% endif %} {% endif %}
  • {% trans "In Progress" %}
  • {% trans "Completed" %}
  • {% if request_report_type != "video" %}
  • {% trans "Struggling" %}
  • {% endif %}
{# Table generation happens here #}
{% if students %}
{% for student in students %} {% endfor %}
{% trans "Learner" %}
{% if request_report_type == "exercise" and exercises %} {% include "coachreports/partials/_tabular_exercises_report.html" %} {% elif request_report_type == "video" and videos %} {% include "coachreports/partials/_tabular_videos_report.html" %} {% endif %} {% endif %}
{% endblock report_content %}