summaryrefslogtreecommitdiff
path: root/grades/templates/grading_systems.html
diff options
context:
space:
mode:
authorPalaparthy Adityachandra2021-02-08 09:37:18 +0530
committerGitHub2021-02-08 09:37:18 +0530
commit1206e886588b3d7e8dfe5fb88a6891e85c5b73ee (patch)
treeda2620ee519b68cfad42b2169b2a79cbccd3734d /grades/templates/grading_systems.html
parent7448e1fa32f4e5af14a3af6b9196d6e1983edf55 (diff)
parentfca319fefcd2a0e476415968b18873b0c791a5fe (diff)
downloadonline_test-1206e886588b3d7e8dfe5fb88a6891e85c5b73ee.tar.gz
online_test-1206e886588b3d7e8dfe5fb88a6891e85c5b73ee.tar.bz2
online_test-1206e886588b3d7e8dfe5fb88a6891e85c5b73ee.zip
Merge pull request #814 from adityacp/code_refactors
Code Refactor
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 %}