{% extends "course/course-base.html" %} {% load i18n %} {% load static %} {% block title %} {% trans "My Grades" %} - {{ relate_site_name }} {% endblock %} {% block header_extra %} {% include "datatables-header.html" %} {% endblock %} {% block content %} {% if grade_participation.pk == participation.pk %}
{% trans "Property" %} | {% trans "Value" %} | {% if not pperm.view_participant_masked_profile %}
---|---|
{% trans "User ID" %} | {{ grade_participation.user.username }} |
{% trans "Name" context "real name of a user" %} | {{ grade_participation.user.get_full_name }} |
{% trans "User" %} | {{ grade_participation.user.get_masked_profile }}{% if grade_participation.user == request.user %}({% trans "ME" %}){% endif %} |
{% trans "Tags" %} | {% for ptag in grade_participation.tags.all %} {% if is_privileged_view or ptag.shown_to_participant %} {{ ptag.name }} {% endif %} {% endfor %} |
{% trans "Name of grading opportunity" %} | {% trans "Grade" %} | {% trans "Date" %} | {% for grade_info in grade_table %} {% with grade_info.grade_state_machine as gsm %}||
---|---|---|---|---|
{{ grade_info.opportunity.name }} | {% if grade_info.opportunity.result_shown_in_participant_grade_book %}{{ gsm.stringify_state }} | {{ grade_info.grade_state_machine.last_graded_time }} | {% else %}{% trans "(not released)" %} | {% trans "(not released)" %} | {% endif %}