{% from "sb-admin/macros/tables/advtable.html" import adv_table %} {% from "sb-admin/macros/tables/table.html" import table %} {% extends "sb-admin/master.html" %} {% block body %}
Choose a test for printing
{% if selected %}
Title: {{ selected.TITLE }}
  • Time allocated: {{ selected.TIME_ALLOWED }}
  • Module: {{ selected.MODULE }}
  • Lecturer: {{ selected.LECTURER }}
  • No. of questions: {{ selected.QUESTCNT }}
  • {% set isempty = '' %} Questions:
    {% for q in selected.QUESTIONS %} {{loop.index}}. {{q.QUESTION}}
    {% else %} Not enough questions in category! {% set isempty = 'disabled' %} {% endfor %}
Choose Another
{% endif %} {% endblock %}