{% extends 'base.html.twig' %} {% block usercss %} {{ parent() }} {% endblock %} {% block body %}
{% if status == "exam_exist" %}
You can not select any other exam/question set untill finish this. Click here to go {{ questionset.questionset }} of {{ questionset.examid.examname }}.
{% endif %}

{{ questionset.examid.examname }}

{#

{{ questionset.questionset }}

#}
Questions : {{ questionset.examid.maxquestions }}
Duration : {{ questionset.examid.duration }} Minutes.

Exam Description

{{ questionset.examid.description|raw }}

Instructions

{{ questionset.examid.instructions|raw }}
{% if status == "new_exam" %} {% form_theme form 'AppBundle:Form:form_div_layout.html.twig' %}
{% if exam_type == 1 %}
{{ form_start(form) }}
{{ form_label(form.invigilator_code) }} {{ form_widget(form.invigilator_code) }} {{ form_errors(form.invigilator_code) }}
{{ form_widget(form.submit) }} {{ form_end(form) }}
{% else %} {{ form(form) }} {% endif %}
{% endif %}
{% endblock %} {% block userscripts %} {% endblock %}