From fca319fefcd2a0e476415968b18873b0c791a5fe Mon Sep 17 00:00:00 2001 From: adityacp Date: Mon, 1 Feb 2021 17:38:00 +0530 Subject: Change templates and models - Remove unwanted model manager methods - Minor UI refactor for course and question interface --- grades/templates/add_grades.html | 10 +++++----- grades/templates/grading_systems.html | 6 +++++- 2 files changed, 10 insertions(+), 6 deletions(-) (limited to 'grades/templates') diff --git a/grades/templates/add_grades.html b/grades/templates/add_grades.html index c7006a9..29da212 100644 --- a/grades/templates/add_grades.html +++ b/grades/templates/add_grades.html @@ -7,8 +7,8 @@ {% endblock %} -{% block main %} - +{% block content %} +

+
View Grading Systems @@ -89,7 +90,6 @@ {{ hidden }} {% endfor %} Grade Range {{forloop.counter}}. -
{% for field in form.visible_fields %}
@@ -100,7 +100,6 @@
{% endfor %}
-
{% endfor %}
@@ -114,5 +113,6 @@ {% endif %}

- +
+ {% endblock %} diff --git a/grades/templates/grading_systems.html b/grades/templates/grading_systems.html index 46b3d30..841b1ad 100644 --- a/grades/templates/grading_systems.html +++ b/grades/templates/grading_systems.html @@ -1,8 +1,9 @@ {% extends "manage.html" %} {% block title %} View Grading Systems {% endblock %} {% block pagetitle %} View Grading Systems {% endblock %} -{% block main %} +{% block content %} +

+
 Add a Grading System @@ -95,5 +97,7 @@ {% endfor %} {% endif %} +
+
{% endblock %} -- cgit