diff options
author | adityacp | 2018-03-01 18:56:13 +0530 |
---|---|---|
committer | adityacp | 2018-03-21 17:32:41 +0530 |
commit | 95f5f27c18380e2fb2f33526c467e822dd10c4d8 (patch) | |
tree | 14146bdddcfc77d329fb6d4ac715befeafcddce7 /grades/templates/add_grades.html | |
parent | e4d8c21c1d035fac72dd0475bcd804013bd311e3 (diff) | |
download | online_test-95f5f27c18380e2fb2f33526c467e822dd10c4d8.tar.gz online_test-95f5f27c18380e2fb2f33526c467e822dd10c4d8.tar.bz2 online_test-95f5f27c18380e2fb2f33526c467e822dd10c4d8.zip |
Add basic UI for grading system
Diffstat (limited to 'grades/templates/add_grades.html')
-rw-r--r-- | grades/templates/add_grades.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/grades/templates/add_grades.html b/grades/templates/add_grades.html index 1e4d29e..e4ea915 100644 --- a/grades/templates/add_grades.html +++ b/grades/templates/add_grades.html @@ -1,13 +1,16 @@ +{% extends "manage.html" %} +{% block main %} <html> -<a href="{% url 'grades:grading_systems'%}"> Back to Grading Systems </a> +<a href="{% url 'grades:grading_systems'%}" class="btn btn-primary"> Back to Grading Systems </a> <p><b>Note: For grade range lower limit is inclusive and upper limit is exclusive</b></p> +<br> {% if not system_id %} <form action="{% url 'grades:add_grade' %}" method="POST"> {% else %} <form action="{% url 'grades:edit_grade' system_id %}" method="POST"> {% endif %} {% csrf_token %} - <table> + <table class="table"> {{ grade_form }} </table> {{ formset.management_form }} @@ -21,10 +24,11 @@ <hr> {% endfor %} {% if not is_default %} - <input type="submit" id="add" name="add" value="Add"> - <input type="submit" id="save" name="save" value="Save"> + <input type="submit" id="add" name="add" value="Add" class="btn btn-info"> + <input type="submit" id="save" name="save" value="Save" class="btn btn-success"> {% else %} <p><b>Note: This is a default grading system. You cannot change this.</b></p> {% endif %} </form> </html> +{% endblock %} |