diff options
author | Prabhu Ramachandran | 2016-12-27 23:55:01 +0530 |
---|---|---|
committer | GitHub | 2016-12-27 23:55:01 +0530 |
commit | 48df2c1b30fa4bfc256399bbaadcbdefa555623d (patch) | |
tree | e1c4140c315655a9b57536e6550ac5eff5d67c4c /yaksh/templates | |
parent | 48366e84b98157ac32b22b2aa19b1c1cde68afd4 (diff) | |
parent | 1b9a870975c1e2492b692ab8ec58bc3c628dcd82 (diff) | |
download | online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.tar.gz online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.tar.bz2 online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.zip |
Merge pull request #167 from adityacp/new_fix_evaluators
Modify Evaluators to take moderator code as test case instead of files
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/add_question.html | 3 | ||||
-rw-r--r-- | yaksh/templates/yaksh/question.html | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/yaksh/templates/yaksh/add_question.html b/yaksh/templates/yaksh/add_question.html index 57e5e78..77a7b3a 100644 --- a/yaksh/templates/yaksh/add_question.html +++ b/yaksh/templates/yaksh/add_question.html @@ -34,8 +34,9 @@ <input type="checkbox" name="extract" value="{{file.id}}" >{% if file.extract %} dont extract{% else %} extract{% endif %}</input> <input type="checkbox" name="hide" value="{{file.id}}" >{% if file.hide %} show{% else %} - hide{% endif %}</input><br> + hide{% endif %}</input> <a href="{{file.file.url}}">{{ file.file.name }}</a> + <br> {% endfor %}{% endif %} </table></center> {% for formset in formsets %} diff --git a/yaksh/templates/yaksh/question.html b/yaksh/templates/yaksh/question.html index 0279f0d..8b2012c 100644 --- a/yaksh/templates/yaksh/question.html +++ b/yaksh/templates/yaksh/question.html @@ -140,9 +140,9 @@ function call_skip(url) <div class="panel-heading"> <h4><u> {{ question.summary }} {% if question.type == "mcq" %} - (MCQ) + (Multiple Choice Questions) {% elif question.type == "mcc" %} - (MCC) + (Multiple Correct Choices) {% elif question.type == "code" %} (PROGRAMMING) {% elif question.type == "upload" %} |