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