{% 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 "My Grades" %}

{% else %}

{% trans "Grades" %}

{% if not pperm.view_participant_masked_profile %} {% else %} {% endif %}
{% trans "Property" %}{% trans "Value" %}
{% 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 %}
{% endif %} {% for grade_info in grade_table %} {% with grade_info.grade_state_machine as gsm %} {% if grade_info.opportunity.result_shown_in_participant_grade_book %} {% else %} {% endif %} {% 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 }} {% trans "(not released)" %} {% trans "(not released)" %}
{% get_current_js_lang_name as LANG %} {% endblock %}