{% extends "courses/base-course.html" %} {% load i18n %} {% load dashboard_extras %} {% load staticfiles %} {% load render_bundle from webpack_loader %} {% 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 }} {% render_bundle 'enrollment-activity-main' %} {% 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 learners who ever enrolled in the course. #} {% trans "Total Enrollment" as label %} {# Translators: This is a label indicating the number of learners in a course. #} {% trans "Learners 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 learner enrollment. #} {% trans "Current Enrollment" as label %} {# Translators: This is a label indicating the number of learners enrolled in a course. #} {% trans "Learners 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 learners 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 %}
{% if not summary.verified_enrollment == None %}
{# Translators: This is a label to identify enrollment of learners on the verified track. #} {% trans "Verified Enrollment" as label %} {# Translators: This is a label indicating the number of learners enrolled in a course on the verified track. #} {% trans "Number of currently enrolled learners pursuing a verified certificate of achievement." as tooltip %} {% summary_point summary.verified_enrollment label tooltip=tooltip %}
{% endif %}
{% 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 %}