{% extends "base.html" %} {% block title %} Quiz results {% endblock title %} {% block meta %} {% endblock meta %} {% block content %} {% if not quizzes and not quiz %}
No quizzes available.
{% endif %} {# ############################################################### #} {# This is rendered when we are just viewing exam/monitor #} {% if quizzes %}Quiz: {{ quiz_name }}
#}Number of papers: {{ papers|length }}
Name | Username | Roll number | Institute | Questions answered | Total marks | Attempts |
---|---|---|---|---|---|---|
{{ paper.user.get_full_name.title }} | {{ paper.user.username }} | {{ paper.profile.roll_number }} | {{ paper.profile.institute }} | {{ paper.get_answered_str }} | {{ paper.get_total_marks }} | {{ paper.answers.count }} |
No answer papers so far.
{% endif %} {# if papers #} {% endif %} Admin {% endblock content %}