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

{{ institution|upper }}

{{ level }}

{% if date %} Exam Date: {{ date }}{% else %}Exam Date: (not specified){% endif %}

{% if paper %} {{ paper }} {% endif %}

Exam Date: {{ date if date else 'N/A' }} {% if paper %} | {{ paper }}{% endif %}

Instructions: Answer all questions. Each question carries marks as indicated.
{% for group, subjects in grouped.items()|sort %}

Group: {{ group }}

{% for subject, qs in subjects.items()|sort %}

{{ subject }}

    {% for q in qs|sort(attribute='question_number') %}
  • {% if q.notes %}
    {{ q.notes }}
    {% endif %}
    {{ q.question_number }}.
    {% if q.marks %} {{ q.marks }} marks {% endif %} {% if q.chapter %} {{ q.chapter }} {% endif %}
    {% if q.nepali_transcription %} {{ q.nepali_transcription|safe }} {% endif %} {% if q.english_transcription %} ({{ q.english_transcription|safe }}) {% endif %}
  • {% endfor %}
{% endfor %}
{% else %}
No questions found for this paper.
{% endfor %}
{% endblock %}