diff options
author | Palaparthy Adityachandra | 2020-03-20 11:12:52 +0530 |
---|---|---|
committer | GitHub | 2020-03-20 11:12:52 +0530 |
commit | e8573822d3ed25306d5d2faf946633f2c17997b0 (patch) | |
tree | c75b5d2730a74191f2c7e51a881e9404f5627c1d /grades/templates/add_grades.html | |
parent | 1dbaec7dd8098701e11713faa0c9040a315e5fac (diff) | |
parent | 36f43151ab26744cf9edc05d0df3f0fb901fcaaa (diff) | |
download | online_test-e8573822d3ed25306d5d2faf946633f2c17997b0.tar.gz online_test-e8573822d3ed25306d5d2faf946633f2c17997b0.tar.bz2 online_test-e8573822d3ed25306d5d2faf946633f2c17997b0.zip |
Merge pull request #655 from adityacp/bump_django
Bump django version to 3.0.3
Diffstat (limited to 'grades/templates/add_grades.html')
-rw-r--r-- | grades/templates/add_grades.html | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/grades/templates/add_grades.html b/grades/templates/add_grades.html index 59a344d..f53a337 100644 --- a/grades/templates/add_grades.html +++ b/grades/templates/add_grades.html @@ -14,7 +14,7 @@ </li> <li class="nav-item"> <a class="nav-link" href="{% url 'yaksh:add_course' %}"> - Add New Course + Add/Edit Course </a> </li> <li class="nav-item dropdown hide"> @@ -46,13 +46,44 @@ Note: For grade range lower limit is inclusive and upper limit is exclusive </div> <br> +{% if messages %} + {% for message in messages %} + <div class="alert alert-dismissible alert-{{ message.tags }}"> + <button type="button" class="close" data-dismiss="alert"> + <i class="fa fa-close"></i> + </button> + <strong>{{ message }}</strong> + </div> + {% endfor %} + <br> +{% endif %} {% 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 class="table"> + <table class="table table-responsive-sm"> + {% if grade_form.errors %} + {% for field in grade_form %} + {% for error in field.errors %} + <div class="alert alert-dismissible alert-danger"> + <button type="button" class="close" data-dismiss="alert"> + <i class="fa fa-close"></i> + </button> + <strong>{{ error|escape }}</strong> + </div> + {% endfor %} + {% endfor %} + {% for error in grade_form.non_field_errors %} + <div class="alert alert-dismissible alert-danger"> + <button type="button" class="close" data-dismiss="alert"> + <i class="fa fa-close"></i> + </button> + <strong>{{ error|escape }}</strong> + </div> + {% endfor %} + {% endif %} {% for field in grade_form %} {{ field }} <hr> |