{% 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
| Property | Value |
| Username |
{{ grade_participation.user.username }} |
| Name |
{{ grade_participation.user.last_name }}, {{ grade_participation.user.first_name }}
|
{% endif %}
| Name |
Grade |
Date |
{% for grade_info in grade_table %}
{% with grade_info.grade_state_machine as gsm %}
| {{ grade_info.opportunity.name }} |
{{ gsm.stringify_state }}
|
{{ grade_info.grade_state_machine.last_graded_time }}
|
{% endwith %}
{% endfor %}
{% endblock %}