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

All Question List

Reset
{% for question in Question_list %} {% endfor %}
No. Section Name Sub-Section Name Topic Name Question Type Tag Mock Type Mock Name Difficulty Level Question Paragraph Answer Explaination Options Action

{{question.display_order}}

{{question.section.section_name}}
{{question.sub_section.sub_section_name}}
{{question.topic.topic_name}}
{{question.question_type}}
{{question.tag}}
{% if question.test.mock_type == 1 %} Area Mock {% elif question.test.mock_type == 2 %} Sectional Mock {% elif question.test.mock_type == 3 %} Weekly Mock {% elif question.test.mock_type == 4 %} Mini Mock {% elif question.test.mock_type == 5 %} Full Mock {% elif question.test.mock_type == 6 %} Advance Mock {% else %} Unknown {% endif %}
{{question.test.mock_title}}
{{question.difficulty_level}}
{{question.question|safe}}
{{question.paragraph|safe}}
{{question.explanation|safe}}
{% if question.question_type == 'mcq' %} {% with question.options|json_decode as option %} {% for opt in option %} {% if forloop.counter|stringformat:"s" == question.correct_answer|stringformat:"s" %}
{{ opt|safe }}
{% else %}
{{ opt|safe }}
{% endif %} {% endfor %} {% endwith %} {% else %}
{{ question.correct_answer }}
{% endif %}
{% include "sidebar.html"%}
{% include "footer.html" %}