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

My Grades

{% else %}

Grades

PropertyValue
Username {{ grade_participation.user.username }}
Name {{ grade_participation.user.last_name }}, {{ grade_participation.user.first_name }}
{% endif %} {% for grade_info in grade_table %} {% with grade_info.grade_state_machine as gsm %} {% endwith %} {% endfor %}
Name Grade Date
{{ grade_info.opportunity.name }} {{ gsm.stringify_state }} {{ grade_info.grade_state_machine.last_graded_time }}
{% endblock %}