summaryrefslogtreecommitdiff
path: root/grades/templates/grading_systems.html
diff options
context:
space:
mode:
authoradityacp2021-02-01 17:38:00 +0530
committeradityacp2021-02-01 17:38:00 +0530
commitfca319fefcd2a0e476415968b18873b0c791a5fe (patch)
treed16d5308d643a3b619b28360eedd173fff49f48b /grades/templates/grading_systems.html
parent164d4d79787f3f6ef21a213bd647e885bf1cc899 (diff)
downloadonline_test-fca319fefcd2a0e476415968b18873b0c791a5fe.tar.gz
online_test-fca319fefcd2a0e476415968b18873b0c791a5fe.tar.bz2
online_test-fca319fefcd2a0e476415968b18873b0c791a5fe.zip
Change templates and models
- Remove unwanted model manager methods - Minor UI refactor for course and question interface
Diffstat (limited to 'grades/templates/grading_systems.html')
-rw-r--r--grades/templates/grading_systems.html6
1 files changed, 5 insertions, 1 deletions
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 %}
<html>
+<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<ul class="nav nav-pills" id="course_tabs">
@@ -25,6 +26,7 @@
</div>
</div>
<hr>
+ <div class="container">
<a href="{% url 'grades:add_grade' %}" class="btn btn-success btn-lg">
<span class=" fa fa-plus-circle"></span>&nbsp;Add a Grading System
</a>
@@ -95,5 +97,7 @@
{% endfor %}
</table>
{% endif %}
+ </div>
+</div>
</html>
{% endblock %}