diff options
Diffstat (limited to 'templates/exam/monitor.html')
-rw-r--r-- | templates/exam/monitor.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/exam/monitor.html b/templates/exam/monitor.html index 12360a2..f1c7779 100644 --- a/templates/exam/monitor.html +++ b/templates/exam/monitor.html @@ -2,12 +2,12 @@ <meta http-equiv="refresh" content="30"/> -{% if quiz_list %} +{% if paper_list %} <table border="1" cellpadding="3"> <tr> <th>Student </th> <th> Roll number </th> <th>Questions answered</th> <th>Total marks</th> </tr> - {% for paper in quiz_list %} + {% for paper in paper_list %} <tr> <td> {{ paper.username }} </td> <td> {{ paper.rollno }} </td> @@ -18,6 +18,6 @@ {% endfor %} </table> {% else %} - <p> No quizzes so far. </p> + <p> No answer papers so far. </p> {% endif %} |