{% extends "manage.html" %} {% block title %} Quiz results {% endblock title %} {% block meta %} {% endblock meta %} {% block css %} {% 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 manage %} {% if not quizzes and not quiz %}
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 %} {% endblock %}