diff options
author | Prabhu Ramachandran | 2017-03-17 17:54:14 +0530 |
---|---|---|
committer | GitHub | 2017-03-17 17:54:14 +0530 |
commit | 23ecd8fa33e7fa2e953aa9715ae45a2869a044a0 (patch) | |
tree | ef559dee40ee85d3aa15fbaf824273e9e98a2d55 /yaksh/templates | |
parent | f6a6a952de703be4040d30edb36b9e6cf1228daf (diff) | |
parent | 6c53c90ee5dd7184889fd3f99130b194e75fef4c (diff) | |
download | online_test-23ecd8fa33e7fa2e953aa9715ae45a2869a044a0.tar.gz online_test-23ecd8fa33e7fa2e953aa9715ae45a2869a044a0.tar.bz2 online_test-23ecd8fa33e7fa2e953aa9715ae45a2869a044a0.zip |
Merge pull request #244 from adityacp/display_err_msg
Display error message while uploading questions
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/showquestions.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yaksh/templates/yaksh/showquestions.html b/yaksh/templates/yaksh/showquestions.html index 3668c9e..157b378 100644 --- a/yaksh/templates/yaksh/showquestions.html +++ b/yaksh/templates/yaksh/showquestions.html @@ -14,7 +14,8 @@ <form action="" method="post" enctype="multipart/form-data"> {% csrf_token %} {{ upload_form.as_p }} -<button class="btn btn-primary" type="submit" name="upload" value="upload">Upload File <span class="glyphicon glyphicon-open"></span></button> +<button class="btn btn-primary" type="submit" name="upload" value="upload"> +Upload File <span class="glyphicon glyphicon-open"></span></button> </form> {% if message %} <h4>{{ message }}</h4> @@ -22,6 +23,7 @@ {% if msg %} <h4>{{ msg }}</h4> {% endif %} +<br><br> <form name=frm action="" method="post"> {% csrf_token %} <div class="row" id="selectors"> |