{% extends "courses/base-course.html" %} {% load i18n %} {% load dashboard_extras %} {% load staticfiles %} {% load render_bundle from webpack_loader %} {% block view-name %}view-course-enrollment view-dashboard{% endblock view-name %} {% block javascript %} {{ block.super }} {% render_bundle 'enrollment-demographics-education-main' %} {% endblock javascript %} {% block child_content %}

{% trans "Education Metrics"%}

{% if summary %}
{# Translators: This is a label to identify learner educational background. #} {% trans "High School Diploma or Less" as label %} {% trans "The percentage of learners who selected Secondary/high school, Junior secondary/junior high/middle school, or Elementary/primary school as their highest level of education completed." as tooltip %} {% summary_point summary.high_school_or_less|metric_percentage label tooltip=tooltip %}
{# Translators: This is a label to identify learner educational background. #} {% trans "College Degree" as label %} {% trans "The percentage of learners who selected Bachelor's degree or Associate degree as their highest level of education completed." as tooltip %} {% summary_point summary.college|metric_percentage label tooltip=tooltip %}
{# Translators: This is a label to identify learner educational background. #} {% trans "Advanced Degree" as label %} {% trans "The percentage of learners who selected Doctorate or Master's or professional degree as their highest level of education completed." as tooltip %} {% summary_point summary.advanced|metric_percentage label tooltip=tooltip %}
{% else %} {% show_metrics_error %} {% endif %}

{% trans "Educational Breakdown"%}

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