{% extends "manage.html" %} {% load custom_filters %} {% block pagetitle %} Quiz results {% endblock pagetitle %} {% block meta %} {% endblock meta %} {% block script %} {% endblock %} {% block subtitle %} {% if not quizzes and not quiz %} Quiz Results {% endif %} {% if quizzes %} Available Quizzes {% endif %} {% if quiz %} {{ quiz.description }} Results {% endif %} {% endblock %} {% block content %} {% if not quizzes and not quiz %}
No quizzes available.
{% endif %} {# ############################################################### #} {# This is rendered when we are just viewing exam/monitor #} {% if quizzes %} {% endif %} {# ############################################################### #} {# This is rendered when we are just viewing exam/monitor/quiz_num #} {% if quiz %} {% if papers %}

Number of papers: {{ papers|length }}

{% completed papers as completed_papers %} {# template tag used to get the count of completed papers #}

Papers completed: {{ completed_papers }}

{% inprogress papers as inprogress_papers %} {# template tag used to get the count of inprogress papers #}

Papers in progress: {{ inprogress_papers }}

Question Statisitics

Download CSV

{% for paper in latest_attempts %} {% endfor %}
Name Username Roll number Institute Questions answered Marks obtained Attempts Time Remaining
{{ paper.user.get_full_name.title }} {{ paper.user.username }} {{ paper.user.profile.roll_number }} {{ paper.user.profile.institute }} {{ paper.get_answered_str }} {{ paper.marks_obtained }} {{ paper.answers.count }} {{ paper.time_left }}
{% else %}

No answer papers so far.

{% endif %} {# if papers #} {% endif %} {% endblock %}