{% extends "distributed/base_teach.html" %} {% load staticfiles %} {% load i18n %} {% load my_filters %} {% block i18n_do_not_translate %} {% block reports_active %}reports-active active-tab active-nav{% endblock reports_active %} {% block teacher_active %}active{% endblock teacher_active %} {% block admin_active %}active{% endblock admin_active %} {% endblock i18n_do_not_translate %} {% block title %}{% trans "Coach Reports" %}{% endblock title %} {% block headcss %}{{ block.super }} {% endblock headcss %} {% block headjs %}{{ block.super }} {% endblock headjs %} {% block content %} {# This call to super pulls in the subnavbar #} {% block subnavbar %}{{block.super}}{% endblock subnavbar %} {# Now we create the coachreport selection bar #}
{# Note to translators: following this phrase is the name of a class. #} {% trans "Coach Reports" %}
{# insert backbone magic here for coachreport navigation #}
{% block report_content %} {# Insert report specifics here #} {% endblock report_content %}
{% endblock content %}