{% extends "course/course-base.html" %} {% load static %} {% block title %} Grade book - Courseflow {% endblock %} {% block header_extra %} {# the min.js version contains all dependencies #} {% endblock %} {% block content %}

Grade book

{% for opp in grading_opportunities %} {% endfor %} {% for participation, grades in grade_table %} {% for grade_info in grades %} {% endfor %} {% endfor %}
Name{{ opp.name }} ({{ opp.identifier }})
{{ participation.user.username }} {{ participation.user.last_name }}, {{ participation.user.first_name }} {% if participation.role != participation_role.student %} ({{ participation.role }}) {% endif %} {{ grade_info.grade_state_machine.stringify_state }}
{% endblock %}