{% extends "course/course-base.html" %} {% load i18n %} {% load static %} {% block title %} {% trans "List of Grading Opportunities" %} - {% trans "RELATE" %} {% endblock %} {% block header_extra %} {% include "datatables-header.html" %} {% endblock %} {% block content %}

{% trans "List of Grading Opportunities" %}

{% for opp in grading_opps %} {% endfor %}
{% trans "Name of grading opportunity" %} {% trans "Flow ID" %} {% trans "Aggregation strategy" %} {% trans "Due time" %} {% trans "Shown to participants" %}
{{ opp.name }} ({{ opp.identifier }}) {% if opp.flow_id %} {{ opp.flow_id }} {% endif %} {{ opp.aggregation_strategy }} {{ opp.due_time }} {% if opp.shown_in_participant_grade_book %} {% else %} {% endif %}
{% load coursetags %} {% get_current_js_lang_name as LANG %} {% endblock %}