diff options
Diffstat (limited to 'grades/templates/grading_systems.html')
-rw-r--r-- | grades/templates/grading_systems.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/grades/templates/grading_systems.html b/grades/templates/grading_systems.html new file mode 100644 index 0000000..143b037 --- /dev/null +++ b/grades/templates/grading_systems.html @@ -0,0 +1,17 @@ +<html> + <b>Default Grading System:</b> + <ul> + <li><a href="{% url 'grades:edit_grade' default_grading_system.id %}">{{ default_grading_system.name }}</a></li> + </ul> + <b> My grading System: </b> + {% if grading_systems %} + <ul> + {% for system in grading_systems %} + <li><a href="{% url 'grades:edit_grade' system.id %}">{{ system.name }}</a></li> + {% endfor %} + </ul> + {% else %} + <p> None. You can add one.</p> + {% endif %} + <a href="{% url 'grades:add_grade' %}"> Add a Grading System </a> +</html> |