{% extends "admin_base.html" %}
{% load i18n %}
{% block extrastyle %}
{{ block.super }}
{% endblock %}
{% block extrahead %}
{% endblock %}
{% block content %}
Select course section to submit or check grades.
{% if pref == 'S' %}
Verify and Upload Grades |
Download Blank Grade Spreadsheet |
{% elif pref == 'O' %}
Online Gradebook |
{% elif pref == 'M' %}
Manual Grade Entry |
{% elif pref == 'E' %}
Verify Grades Already Synced |
{% endif %}
{% for course_section in course_sections %}
{% if pref in 'SME' %}
{{ course_section }}
{% elif pref == 'O' %}
{{ course_section }}
{% endif %}
|
{% if pref == 'S' %}
Download XLS |
{% endif %}
{% endfor %}
{% if all_sections %}
All sections
Teacher |
{% if pref == 'S' %}
Verify and Upload Grades |
Download Blank Grade Spreadsheet |
{% elif pref == 'O' %}
Online Gradebook |
{% elif pref == 'M' %}
Manual Grade Entry |
{% elif pref == 'E' %}
Verify Grades Already Synced |
{% endif %}
{% for course_section in all_sections %}
{{ course_section.teacher }}
|
{% if pref in 'SME' %}
{{ course_section }}
{% elif pref == 'O' %}
{{ course_section }}
{% endif %}
|
{% if pref == 'S' %}
Download XLS |
{% endif %}
{% endfor %}
{% endif %}
{% if pref == "E" %}
Sync all grades with Engrade
{% endif %}
Change Grading Method
{% endblock %}