{# Translators: This is a label to identify the median age of enrolled students. #}
{% trans "Median Student Age" as label %}
{% trans "The midpoint of the student ages, computed from the provided year of birth." as tooltip %}
{% summary_point summary.median label tooltip=tooltip %}
{# Translators: This is a label to identify the number of students in the age range. #}
{% trans "Students 25 and Under" as label %}
{% trans "The percentage of students aged 25 years or younger (of those who provided a year of birth)." as tooltip %}
{% summary_point summary.age_25_and_under|metric_percentage label tooltip=tooltip %}
{# Translators: This is a label to identify the number of students in the age range. #}
{% trans "Students 26 to 40" as label %}
{% trans "The percentage of students aged from 26 to 40 years (of those who provided a year of birth)." as tooltip %}
{% summary_point summary.age_26_to_40|metric_percentage label tooltip=tooltip %}
{# Translators: This is a label to identify the number of students in the age range. #}
{% trans "Students 41 and Over" as label %}
{% trans "The percentage of students aged 41 years or older (of those who provided a year of birth)." as tooltip %}
{% summary_point summary.age_41_and_over|metric_percentage label tooltip=tooltip %}
{% else %}
{% show_metrics_error %}
{% endif %}