{% extends "courses/base-course.html" %} {% load i18n %} {% load dashboard_extras %} {% load staticfiles %} {% load rjs %} {% load waffle_tags %} {% comment %} Individual course-centric enrollment activity view. {% endcomment %} {% block view-name %}view-course-enrollment view-dashboard{% endblock view-name %} {% block javascript %} {{ block.super }} {% endblock javascript %} {% block child_content %}

{% trans "Enrollment Metrics" %}

{% if summary %}
{% if not summary.total_enrollment == None %}
{# Translators: This is a label to identify the number of students who ever enrolled in the course. #} {% trans "Total Enrollment" as label %} {# Translators: This is a label indicating the number of students in a course. #} {% trans "Students who ever enrolled in the course." as tooltip %} {% summary_point summary.total_enrollment label tooltip=tooltip %}
{% endif %}
{# Translators: This is a label to identify current student enrollment. #} {% trans "Current Enrollment" as label %} {# Translators: This is a label indicating the number of students enrolled in a course. #} {% trans "Students currently enrolled in the course." as tooltip %} {% summary_point summary.current_enrollment label tooltip=tooltip %}
{# Translators: This is a label indicating the change in the number of students enrolled in a course since the previous week. #} {% trans "Change in Last Week" as label %} {% trans "Net difference in current enrollment in the last week." as tooltip %} {% summary_point summary.enrollment_change_last_7_days label tooltip=tooltip %}
{% switch display_verified_enrollment %} {% if not summary.verified_enrollment == None %}
{# Translators: This is a label to identify enrollment of students on the verified track. #} {% trans "Verified Enrollment" as label %} {# Translators: This is a label indicating the number of students enrolled in a course on the verified track. #} {% trans "Number of currently enrolled students pursuing a verified certificate of achievement." as tooltip %} {% summary_point summary.verified_enrollment label tooltip=tooltip %}
{% endif %} {% endswitch %}
{% else %} {% show_metrics_error %} {% endif %}

{% trans "Enrollment Over Time" %}

{% if js_data.course.enrollmentTrends %} {% trans "Download CSV" %} {% trans "Enrollment Over Time" %} {% endif %}
{% if js_data.course.enrollmentTrends %}
{% include "loading.html" %}
{% else %} {% show_table_error %} {% endif %}
{% endblock %}