{% extends '::base.html.twig' %} {% block usercss %} {{ parent() }} {% endblock %} {% block body -%}
{{ exam.examname }}
List: Questions in {{ exam.examname }}
{% set slno = 1 %} {% set total_mark = 0 %} {% set total_minus_mark = 0 %} {% for question in exam_questions %} {% set slno = slno + 1 %} {% endfor %}
# Question Subject Question Type Mark Minus Mark
{{ slno }}
{{ question.question.question|raw }} {#{{ question.question|raw }}#}
Positive Feedback
{{ question.positivefeedback }}
Negative Feedback
{{ question.negativefeedback }}
{{ question.question.subject }} {{ question.question.questiontype }} {{ question.mark }} {% set total_mark = total_mark + question.mark %} {% if exam.finalized == 0 %} {% endif %} {% if question.question.questiontype.id == 1 %} {{ question.minusmark }} {% set total_minus_mark = total_minus_mark + question.minusmark %} {% if exam.finalized == 0 %} {% endif %} {% endif %}
Total {{ total_mark }} {{ total_minus_mark }}
{% if exam.finalized %} Cancel Finlization {% else %} Click Here to Finlize {% endif %}
{% endblock %} {% block userscripts %} {% endblock %}