{% include "header.html" %} {% load static %}

Exam Category Details

{% if exam_category.image %} {% else %}

Image Not Available

{% endif %}
Exam Category Name : {{exam_category.exam_category_name}}

Marks per Questions :

{{exam_category.marks_per_question}}

Negative mark per Question :

{{exam_category.negative_marks_per_question}}

Section Wise Timer :

{% if exam_category.section_wise_timer == 1 %} Yes {% else %} No {% endif %}

Switching Between Section :

{% if exam_category.section_switching == 1 %} Yes {% else %} No {% endif %}

Calculator Allowed :

{% if exam_category.calculator == 1 %} Yes {% else %} No {% endif %}

Status :

{{exam_category.status}}

{% for section, section_data in sections_data.items %} {% for subsection, subsection_data in section_data.subsections.items %} {% for topic in subsection_data.topics %} {% if not loop.last %} {% endif %} {% endfor %} {% endfor %} {% endfor %}
Section Sub-section Topics
{{ section.section_name }} {{ subsection.sub_section_name }} {{ topic.topic_name }}
{% include "sidebar.html"%}
{% include "footer.html" %}