{% extends "base.html" %} {% load humanize %} {% block title %}Enter Grades{% endblock %} {% block nav_teacher_grades %}active{% endblock %} {% block content %}
{% for ay in academic_year_options %} {% endfor %}
{% if selected_course %}
{% csrf_token %}
{{ selected_course.name }} {{ current_term|title }} {{ current_academic_year }}
{% if student_rows %}
{% for row in student_rows %} {% endfor %}
# Student Student No. Grade Marks (/100) Notes
{{ forloop.counter }} {{ row.enrollment.student.get_full_name }} {{ row.enrollment.student_number }}
{% else %}

No active students enrolled in this program.

{% endif %}
{% elif request.GET %}

Please select a course, term, and academic year to load the grade entry grid.

{% else %}

Use the filters above to select a course and term.

Grades are saved per student, per course, per term and grade type.

{% endif %} {% endblock %}