diff options
Diffstat (limited to 'testapp')
-rw-r--r-- | testapp/templates/exam/results_user.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/testapp/templates/exam/results_user.html b/testapp/templates/exam/results_user.html index 75d168d..bf847c0 100644 --- a/testapp/templates/exam/results_user.html +++ b/testapp/templates/exam/results_user.html @@ -1,7 +1,7 @@ {% extends "user.html" %} -{% block subtitle %}Results for {{ papers.user.first_name }}{% endblock %} +{% block subtitle %}Results{% endblock %} {% block css %} <link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" /> @@ -10,14 +10,17 @@ {% block manage %} <form action="" method="post" name=frm> {% csrf_token %} - <center> + <center><table class="span6"> + <th>Quiz Description + <th>Obtained Marks {% for paper in papers %} + <tr> {% for i in paper %} - {{ i }} + <td>{{ i }} {% endfor %} <br> {% endfor %} - </center> + </table></center> </form> {% endblock %} |