{% extends "course/course-base.html" %} {% load i18n %} {% load static %} {% block title %} {% trans "My Grades" %} - {% trans "RELATE" %} {% endblock %} {% block header_extra %} {# the min.js version contains all dependencies #} {% endblock %} {% block content %} {% if grade_participation.pk == participation.pk %}

{% trans "My Grades" %}

{% else %}

{% trans "Grades" %}

{% trans "Property" %}{% trans "Value" %}
{% trans "User ID" %} {{ grade_participation.user.username }}
{% trans "Name" context "real name of a user" %} {# Translators: how the real name of a user is displayed. #} {% blocktrans trimmed with last_name=grade_participation.user.last_name first_name=grade_participation.user.first_name %} {{ last_name }}, {{ first_name }} {% endblocktrans %}
{% trans "Tags" %} {% for ptag in grade_participation.tags.all %} {% if not is_student_viewing or ptag.shown_to_participant %} {{ ptag.name }} {% endif %} {% endfor %}
{% endif %} {% for grade_info in grade_table %} {% with grade_info.grade_state_machine as gsm %} {% endwith %} {% endfor %}
{% trans "Name of grading opportunity" %} {% trans "Grade" %} {% trans "Date" %}
{{ grade_info.opportunity.name }} {{ gsm.stringify_state }} {{ grade_info.grade_state_machine.last_graded_time }}
{% endblock %}