diff options
author | mahesh | 2017-05-16 18:28:49 +0530 |
---|---|---|
committer | mahesh | 2017-05-16 18:28:49 +0530 |
commit | 6d8e1aa67381cd3b07e4ac89818af2a96ca05668 (patch) | |
tree | 7bd6dcc8f764bc47d42fbe2c3b9fe9bfe36c05e1 /yaksh/templates/exam.html | |
parent | cb1655ea467cf6ed673ed422719c87f2c861723a (diff) | |
download | online_test-6d8e1aa67381cd3b07e4ac89818af2a96ca05668.tar.gz online_test-6d8e1aa67381cd3b07e4ac89818af2a96ca05668.tar.bz2 online_test-6d8e1aa67381cd3b07e4ac89818af2a96ca05668.zip |
added wordwrap for error output table
Diffstat (limited to 'yaksh/templates/exam.html')
-rw-r--r-- | yaksh/templates/exam.html | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/yaksh/templates/exam.html b/yaksh/templates/exam.html index b5b6c46..f349b2f 100644 --- a/yaksh/templates/exam.html +++ b/yaksh/templates/exam.html @@ -86,32 +86,33 @@ <pre><code> {{error|safe}} </code></pre> {% else %} {% if error.given_input %} - <table class="table table-bordered" width="100%"> + <table class="table table-bordered"> <col width="30%"> <tr class = "active"> <td> For given Input value(s):</td> <td>{{error.given_input}}</td> + </tr> </table> {% endif %} - <table class="table table-bordered" width="100%"> + <table class="table table-bordered" width="100%" id="output"> <col width="10%"> <col width="40%"> <col width="40%"> <col width="10%"> <tr class="info"> - <td><b><center>Line No.</center></b></td> - <td><b><center>Expected Output</center></b></td> - <td><b><center>User output</center></b></td> - <td><b><center>Status</center></b></td> + <th><center>Line No.</center></th> + <th><center>Expected Output</center></th> + <th><center>User output</center></th> + <th><center>Status</center></th> </tr> {% for expected,user in error.expected_output|zip:error.user_output %} <td> {{forloop.counter}} </td> <td>{{expected|default:""}} </td> <td>{{user|default:""}}</td> {% if forloop.counter0 in error.error_no or not expected or not user %} - <td><span class ="glyphicon glyphicon-remove text-warning"></td> + <td><span class ="glyphicon glyphicon-remove text-warning"/></td> {% else %} - <td><span class ="glyphicon glyphicon-ok text-success"></td> + <td><span class ="glyphicon glyphicon-ok text-success"/></td> {% endif %} </tr> {% endfor %} @@ -121,7 +122,7 @@ <tr class = "danger"> <td><b>Error:</b></td> <td>{{error.error}}</td> - + </tr> </table> {% endif %} |