diff options
author | Prabhu Ramachandran | 2014-07-03 18:06:26 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2014-07-03 18:06:26 +0530 |
commit | befad018f2e59389e92eaa109c6968bea30d06f9 (patch) | |
tree | df02d9de7fdd1596c0be1268bdd9148a2f0f15cb /testapp/templates/exam/monitor.html | |
parent | ba6308eb5dfe391305f5466fba00be46a4755f7e (diff) | |
parent | 2d04f8cce5c5cf610b401ed37f796bd2034c07e9 (diff) | |
download | online_test-befad018f2e59389e92eaa109c6968bea30d06f9.tar.gz online_test-befad018f2e59389e92eaa109c6968bea30d06f9.tar.bz2 online_test-befad018f2e59389e92eaa109c6968bea30d06f9.zip |
Merge pull request #32 from prathamesh920/question_paper_creation_interface
Question paper creation interface
Diffstat (limited to 'testapp/templates/exam/monitor.html')
-rw-r--r-- | testapp/templates/exam/monitor.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testapp/templates/exam/monitor.html b/testapp/templates/exam/monitor.html index aa8b678..ecdb852 100644 --- a/testapp/templates/exam/monitor.html +++ b/testapp/templates/exam/monitor.html @@ -47,7 +47,7 @@ <th> Roll number </th> <th> Institute </th> <th> Questions answered </th> - <th> Total marks </th> + <th> Marks obtained </th> <th> Attempts </th> </tr> {% for paper in papers %} @@ -57,7 +57,7 @@ <td> {{ paper.profile.roll_number }} </td> <td> {{ paper.profile.institute }} </td> <td> {{ paper.get_answered_str }} </td> - <td> {{ paper.get_total_marks }} </td> + <td> {{ paper.marks_obtained }} </td> <td> {{ paper.answers.count }} </td> </tr> {% endfor %} |