summaryrefslogtreecommitdiff
path: root/grades/templates/grading_systems.html
diff options
context:
space:
mode:
authoradityacp2018-03-23 16:13:48 +0530
committeradityacp2018-03-23 16:13:48 +0530
commit6ea7ee3b6d57d3a3fe737ac1870978c37fc09ce1 (patch)
treeec7e0264b0818229ab256e3dcf4cdf32aa11b40c /grades/templates/grading_systems.html
parent3577245efdd6b7ea479bb499633d38bb86aa81d7 (diff)
parentd4f49e8a93ed2ce2e63bd67fa77aa75741c2d6c5 (diff)
downloadonline_test-6ea7ee3b6d57d3a3fe737ac1870978c37fc09ce1.tar.gz
online_test-6ea7ee3b6d57d3a3fe737ac1870978c37fc09ce1.tar.bz2
online_test-6ea7ee3b6d57d3a3fe737ac1870978c37fc09ce1.zip
Merge https://github.com/fossee/online_test into release-0.8
Diffstat (limited to 'grades/templates/grading_systems.html')
-rw-r--r--grades/templates/grading_systems.html74
1 files changed, 74 insertions, 0 deletions
diff --git a/grades/templates/grading_systems.html b/grades/templates/grading_systems.html
new file mode 100644
index 0000000..3a71ebf
--- /dev/null
+++ b/grades/templates/grading_systems.html
@@ -0,0 +1,74 @@
+{% extends "manage.html" %}
+{% block main %}
+<html>
+ <a href="{% url 'grades:add_grade' %}" class="btn btn-primary"> Add a Grading System </a>
+ <a href="{% url 'yaksh:courses' %}" class="btn btn-danger"> Back to Courses </a>
+ <br><br>
+ <b> Available Grading Systems: </b>
+ <table class="table">
+ <tr>
+ <th>Grading System</th>
+ <th>Grading Ranges</th>
+ </tr>
+ <tr>
+ <td>
+ <a href="{% url 'grades:edit_grade' default_grading_system.id %}">
+ {{ default_grading_system.name }}</a> (<b>Default Grading System</b>)
+ </td>
+ <td>
+ <table class="table">
+ <tr>
+ <th>Lower Limit</th>
+ <th>Upper Limit</th>
+ <th>Grade</th>
+ <th>Description</th>
+ </tr>
+ {% for range in default_grading_system.graderange_set.all %}
+ <tr>
+ <td>{{range.lower_limit}}</td>
+ <td>{{range.upper_limit}}</td>
+ <td>{{range.grade}}</td>
+ {% if range.description %}
+ <td>{{range.description}}</td>
+ {% else %}
+ <td>------</td>
+ {% endif %}
+ </tr>
+ {% endfor %}
+ </table>
+ </td>
+ </tr>
+ {% if grading_systems %}
+ {% for system in grading_systems %}
+ <tr>
+ <td>
+ <a href="{% url 'grades:edit_grade' system.id %}">{{ system.name }}</a>
+ </td>
+ <td>
+ <table class="table">
+ <tr>
+ <th>Lower Limit</th>
+ <th>Upper Limit</th>
+ <th>Grade</th>
+ <th>Description</th>
+ </tr>
+ {% for range in system.graderange_set.all %}
+ <tr>
+ <td>{{range.lower_limit}}</td>
+ <td>{{range.upper_limit}}</td>
+ <td>{{range.grade}}</td>
+ {% if range.description %}
+ <td>{{range.description}}</td>
+ {% else %}
+ <td>------</td>
+ {% endif %}
+ </tr>
+ {% endfor %}
+ </table>
+ </td>
+ </tr>
+ {% endfor %}
+ </table>
+ {% endif %}
+</html>
+{% endblock %}