diff options
author | hardythe1 | 2012-05-31 19:34:36 +0530 |
---|---|---|
committer | hardythe1 | 2012-05-31 19:34:36 +0530 |
commit | 5743fd26a6c844e45a306f9ad5aa589a95c34afe (patch) | |
tree | 361ab540e0462fab59ab21c3af27653fb8b48ea5 | |
parent | 6c0d75e784b87ed05e4c138110f987e88a37701b (diff) | |
download | online_test-5743fd26a6c844e45a306f9ad5aa589a95c34afe.tar.gz online_test-5743fd26a6c844e45a306f9ad5aa589a95c34afe.tar.bz2 online_test-5743fd26a6c844e45a306f9ad5aa589a95c34afe.zip |
Minor UI Changes
-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 %} |