diff options
author | maheshgudi | 2017-01-03 17:57:01 +0530 |
---|---|---|
committer | maheshgudi | 2017-01-03 17:57:01 +0530 |
commit | 25eb8d10045e1af6ab7c282b8df0b008223be545 (patch) | |
tree | cd83157c0b2d89e431ad7d481367cb2c7ef738f1 /yaksh/templates | |
parent | feeb605573357fd8056f103b1043e192838bb23d (diff) | |
download | online_test-25eb8d10045e1af6ab7c282b8df0b008223be545.tar.gz online_test-25eb8d10045e1af6ab7c282b8df0b008223be545.tar.bz2 online_test-25eb8d10045e1af6ab7c282b8df0b008223be545.zip |
added completed and inprogress papers' status in monitor
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/monitor.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/yaksh/templates/yaksh/monitor.html b/yaksh/templates/yaksh/monitor.html index 7a3297b..0ad6401 100644 --- a/yaksh/templates/yaksh/monitor.html +++ b/yaksh/templates/yaksh/monitor.html @@ -1,4 +1,5 @@ {% extends "manage.html" %} +{% load custom_filters %} {% block pagetitle %} Quiz results {% endblock pagetitle %} @@ -49,6 +50,14 @@ $(document).ready(function() {% if papers %} <p>Number of papers: {{ papers|length }} </p> +{% completed papers as completed_papers %} + {# template tag used to get the count of completed papers #} + <p>Papers completed: <b> {{ completed_papers }} </b></p> + +{% inprogress papers as inprogress_papers %} + {# template tag used to get the count of inprogress papers #} + <p>Papers in progress:<b> {{ inprogress_papers }} </b></p> + <p><a href="{{URL_ROOT}}/exam/manage/statistics/question/{{papers.0.question_paper.id}}">Question Statisitics</a></p> <p><a href="{{URL_ROOT}}/exam/manage/monitor/download_csv/{{papers.0.question_paper.id}}">Download CSV</a></p> <table id="result-table" class="tablesorter table"> |