{% extends "course/course-base.html" %} {% load i18n %} {% block title %} {% trans "Grade book" %} - {{ relate_site_name }} {% endblock %} {% block header_extra %} {% include "datatables-header.html" %} {% endblock %} {% block content %}
{% trans "User ID" %} | {% trans "Name" context "real name of a user" %} | {% else %}{% trans "User" %} | {% endif %} {% for opp in grading_opportunities reversed %}{{ opp.name }} ({{ opp.identifier }}) | {% endfor %} {% for participation, grades in grade_table %}
---|---|---|
{% if not pperm.view_participant_masked_profile %} {{ participation.user.username }} {% else %} {% if participation.user == user %}{% trans "Me" %}{% else %}{{ participation.user.get_masked_profile }}{% endif %} {% endif %} {% if pperm.view_participant_masked_profile %} {% if participation|has_permission:"view_gradebook" %} ({{ participation.get_role_desc }}) {% endif %} {% endif %} | {% if not pperm.view_participant_masked_profile %}{{ participation.user.get_full_name }} {% if participation|has_permission:"view_gradebook" %} ({{ participation.get_role_desc }}) {% endif %} | {% endif %} {% for grade_info in grades reversed %}{{ grade_info.grade_state_machine.stringify_state }} | {% endfor %}