{% load static %} Update Question
My image Homik Oil and Gas Facility Engineering School

Update question

{% csrf_token %}


{% if question_type == "Multiple Choice Single Answer" %}
Enter the no. of options:
{% elif question_type == "Multiple Choice Multiple Answer" %}
Enter the no. of options:
{% elif question_type == "Match the Column" %}
Enter the no. of questions:
{% elif question_type == "Short Answer" %}
{% elif question_type == "Long Answer" %}
{% endif %}

{% if question_type == "Multiple Choice Single Answer" %}
Option no.
Option value
Select the correct answer
{% for i in options %}
{{i.option_desig}})
{% if i.answer == 1 %} {% else %} {% endif %}
{% endfor %} {% elif question_type == "Multiple Choice Multiple Answer" %}
Option no.
Option value
Select the correct answers
{% for i in options %}
{{i.option_desig}})
{% if i.answer == 1 %} {% else %} {% endif %}
{% endfor %} {% elif question_type == "Match the Column" %}
Question no.
Question
S no.
Answer
{% for i in answers %}
{{i.ques_no}})
{{i.ans_no}})
{% endfor %} {% endif %}