diff options
author | prathamesh | 2016-02-16 14:30:57 +0530 |
---|---|---|
committer | prathamesh | 2016-02-16 14:30:57 +0530 |
commit | 5fa372b47e1f70e3d7d3b2df02410f50a86664b2 (patch) | |
tree | b8209e667e4b43c0752cd3eb3694c0cf0a6304ef /yaksh/templates | |
parent | c3031971929aa7b92705680c35f57cf422efd88d (diff) | |
download | online_test-5fa372b47e1f70e3d7d3b2df02410f50a86664b2.tar.gz online_test-5fa372b47e1f70e3d7d3b2df02410f50a86664b2.tar.bz2 online_test-5fa372b47e1f70e3d7d3b2df02410f50a86664b2.zip |
Marks are updated at each submit.
Shows status of the user test to the moderator
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/monitor.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yaksh/templates/yaksh/monitor.html b/yaksh/templates/yaksh/monitor.html index dae07e3..7df0569 100644 --- a/yaksh/templates/yaksh/monitor.html +++ b/yaksh/templates/yaksh/monitor.html @@ -49,6 +49,7 @@ <th> Questions answered </th> <th> Marks obtained </th> <th> Attempts </th> + <th> Status </th> </tr> {% for paper in papers %} <tr> @@ -59,6 +60,7 @@ <td> {{ paper.get_answered_str }} </td> <td> {{ paper.marks_obtained }} </td> <td> {{ paper.answers.count }} </td> + <td> {{ paper.status }} </td> </tr> {% endfor %} </table> |