{% extends "base_dashboard.html" %} {% load i18n %} {% load staticfiles %} {% load dashboard_extras %} {% load rjs %} {% block view-name %}view-course-list{% endblock view-name %} {% block title %}{% trans "Courses" %} {{ block.super }}{% endblock title %} {% block summary-cards %}

{% blocktrans %}Across all your courses:{% endblocktrans %}

{% if summary %}
{# Translators: This is a label to identify the maximum number of learners ever in all of the instructor's courses. #} {% trans "Total Enrollment" as label %} {% trans "Total enrollments across all of your courses." as tooltip %} {% summary_point summary.total_enrollment label tooltip=tooltip %}
{# Translators: This is a label to identify the current number of learners in all of the instructor's courses. #} {% trans "Current Enrollment" as label %} {% trans "Current enrollments across all of your courses." as tooltip %} {% summary_point summary.current_enrollment label tooltip=tooltip %}
{# Translators: This is a label to identify the change in the number of learners in all of the instructor's courses in the last week. #} {% trans "Change in Last Week" as label %} {% trans "Total change in enrollment last week across all of your courses." as tooltip %} {% summary_point summary.enrollment_change_7_days label tooltip=tooltip %}
{# Translators: This is a label to identify the current number of verified learners in all of the instructor's courses. #} {% trans "Verified Enrollment" as label %} {% trans "Verified enrollments across all of your courses." as tooltip %} {% summary_point summary.verified_enrollment label tooltip=tooltip %}
{% else %} {% show_metrics_error %} {% endif %}
{% endblock %} {% block stylesheets %} {{ block.super }} {% endblock stylesheets %} {% block javascript %} {{ block.super }} {% endblock javascript %} {% block content %} {% block child_content %}
{% include "loading.html" %}
{% endblock %} {% block data_messaging %} {% include "courses/_data_last_updated.html" with update_message=update_message data_information_message=data_information_message %} {% endblock %} {% endblock %}