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