{% extends "base.html" %} {% block content %}

Questions for Chapter: {{ chapter_code }}

{% for subject, groups in grouped.items()|sort %}
Subject: {{ subject }}
{% for group, qs in groups.items()|sort %}
Group: {{ group }}
    {% for q in qs|sort(attribute='question_number') %}
  • {{ q.question_number }}.
    {% if q.marks %} {{ q.marks }} marks {% endif %} {% if q.paper %} {{ q.paper }} {% endif %}
    {% if q.nepali_transcription %} {{ q.nepali_transcription|safe }} {% endif %} {% if q.english_transcription %} ({{ q.english_transcription|safe }}) {% endif %}
  • {% endfor %}
{% endfor %} {% endfor %}
{% endblock %}