{% endmacro %}
{% macro Question(question, index) %}
{% set type = question.type if question.type else "Choices" %}
{{ _("Question") }} {{ index }}
{{ _("Question Type") }}
{% for i in range(1,5) %}
{% set num = frappe.utils.cstr(i) %}
{% set option = question["option_" + num] %}
{% set explanation = question["explanation_" + num] %}
{% set possible_answer = question["possibility_" + num] %}