{% extends "admin/base_site.html" %}
{% load i18n %}
{% block extrahead %}
{% endblock %}
{% block content %}
{{ course_section }}
Upload grades
{{ message|safe }}
Display and verify grades
{% spaceless %}
{% for mp in mps %}
{{ mp.name }}
{% for student in mp.students %}
{{ student }}
{% for category in student.categories %}
{% if category.marks %}
{{ category.name }}
{% for mark in category.marks %}
{% if mark.item.name != 'None' %}
{{ mark.item.name }}
{% endif %}
{% if mark.description and show_descriptions %}
{{ mark.description }}
{% endif %}
|
{{ mark.mark }} (of {{ mark.item.scale.maximum }}) |
{% endfor %}
|
{% endif %}
{% endfor %}
{% for category in student.categories %}
{% if category.marks %}
Average: {{ category.average }}
|
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endspaceless %}
{% endblock %}