{% 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 %}