{% extends "course/course-base.html" %} {% load i18n %} {% load static %} {% block title %} {% trans "List of Grading Opportunities" %} - {{ relate_site_name }} {% endblock %} {% block header_extra %} {% include "datatables-header.html" %} {% endblock %} {% block content %}
{% trans "Name of grading opportunity" %} | {% if pperm.edit_grading_opportunity %}{% trans "Actions" %} | {% endif %}{% trans "Flow ID" %} | {% trans "Aggregation strategy" %} | {% trans "Due time" %} | {% trans "Shown to participants" %} | {% for opp in grading_opps %}
---|---|---|---|---|---|
{{ opp.name }} ({{ opp.identifier }}) | {% if pperm.edit_participation %}{% trans "Edit" %} | {% endif %}{% if opp.flow_id %} {{ opp.flow_id }} {% endif %} | {{ opp.aggregation_strategy }} | {{ opp.due_time }} | {% if opp.shown_in_participant_grade_book and opp.result_shown_in_participant_grade_book %} {% else %} {% endif %} |