{% extends "base.html" %} {% load custom_filters %} {% load static %} {% block title %}{{ paper.question_paper.quiz.description }}{% endblock %} {% block nav %}
{% endblock %} {% block content %}

{{course.name}}
{{ paper.question_paper.quiz.description }}

Question Navigator


{% for qid in paper.get_all_ordered_questions %} {% if paper.question_paper.quiz.allow_skip %} {% if qid in paper.get_questions_unanswered %} {% if qid.id == question.id %} {{ forloop.counter }} {% else %} {{ forloop.counter }} {% endif %} {% endif %} {% if qid in paper.get_questions_answered %} {{ forloop.counter }} {% endif %} {% else %} {% if qid.id == question.id %} {{ forloop.counter }} {% elif qid in paper.get_questions_answered %} {{ forloop.counter }} {% else %} {{ forloop.counter }} {% endif %} {% endif %} {% endfor %}

Attempted question(s)

Current question

Unattempted question(s)


Question(s) left: {{ paper.questions_left }}


{% for category, question_number in paper.get_categorized_question_indices.items %} {% endfor %}
Category Question No.
{{category}} {{question_number| join:", "}}


{% block main %} {% endblock %}
{% endblock %}