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

View Solution

{{student.0.first_name}} {{student.0.last_name}}

{{student.0.mobile}}   {{student.0.email}}    Attempted Date: {{exam_wise_stats.0.attempted_at}}

All {% for section in sections %} {{section.section_name}} {% endfor %}

{% for question in question_answers %}

{{forloop.counter}}.)

{% if question.question__paragraph %}

{{question.question__paragraph|safe}}

{{question.question__question|safe}}

{% else %}

{{question.question__question|safe}}

{% endif %} {% with question.question__options|json_decode as option %} {% for opt in option %} {% if question.answer_id %} {% if forloop.counter|stringformat:"s" == question.answer_id|stringformat:"s" %} {% if question.answer_id|stringformat:"s" == question.question__correct_answer|stringformat:"s" %}
{{ opt|safe }}
{% else %} {% if forloop.counter|stringformat:"s" == question.question__correct_answer|stringformat:"s" %}
{{ opt|safe }}
{% else %}
{{ opt|safe }}
{% endif %} {% endif %} {% else %} {% if forloop.counter|stringformat:"s" == question.question__correct_answer|stringformat:"s" %}
{{ opt|safe }}
{% else %}
{{ opt|safe }}
{% endif %} {% endif %} {% else %}
{{ opt|safe }}
{% endif %} {% endfor %} {% endwith %}
{% endfor %}
{% include "sidebar.html"%}
{% include "footer.html" %}