{% extends "base.html" %} {% block title %} Quiz results {% endblock title %} {% block meta %} {% endblock meta %} {% block content %} {% if not quiz_data and not paper_list %}

Quiz results

No quizzes available.

{% endif %} {# ############################################################### #} {# This is rendered when we are just viewing exam/monitor #} {% if quiz_data %}

Available quizzes

{% endif %} {# ############################################################### #} {# This is rendered when we are just viewing exam/monitor/quiz_num #} {% if paper_list %}

{{ quiz_name }} results

{#

Quiz: {{ quiz_name }}

#}

Number of papers: {{ paper_list|length }}

{% for paper in paper_list %} {% endfor %}
Name Username Roll number Institute Questions answered Total marks Attempts
{{ paper.name.title }} {{ paper.username }} {{ paper.rollno }} {{ paper.institute }} {{ paper.answered }} {{ paper.total }} {{ paper.attempts }}
{% else %} {% if quiz_name %}

No answer papers so far.

{% endif %} {% endif %} {% endblock content %}