{% extends "courses/base-course.html" %} {% load i18n %} {% load dashboard_extras %} {% block view-name %}view-course-performance-graded view-dashboard{% endblock view-name %} {% block child_content %}
{% trans "Which assignment type do you want to investigate?" as heading_note %} {% include "courses/_graded_content_nav.html" with active="first_level" first_levels=assignment_types heading_note=heading_note %}
{% trans "Click an assignment type to view more detail information about the assignments." as tip_text %} {% include "chart_tooltip.html" with tip_text=tip_text track_category="grading_policy" %}
{% for item in grading_policy %} {% widthratio item.weight 1 100 as policy_ratio %} {% captureas policy_description %} {# Translators: This describes the percent an assignment contributes to that of a learner's grade (e.g. Exam: 60% of the grading policy.). #} {% blocktrans with item.assignment_type as assignment_type %} {{ assignment_type }}: {{ policy_ratio }}% of the grading policy {% endblocktrans %} {% endcaptureas %} {% widthratio item.weight 1 max_policy_display_percent as bar_ratio %} {% endfor %}
{% endblock %}