{% load i18n %}{% load widget_tweaks %} {% load attendancefilters %} {% load static %}
{{form.non_field_errors}}
{% for question in questions %} {% if question.type == "textarea" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% elif question.type == "options" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% elif question.type == "multiple" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% elif question.type == "percentage" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% elif question.type == "file" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% elif question.type == "date" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% elif question.type == "rating" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% elif question.type == "checkbox" %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
Yes
No
{% else %}
{% if question.is_mandatory %} {{ question.question }} * {% trans "Mandatory Question" %} {% else %} {{ question.question }} {% endif %}
{% endif %} {% endfor %}
{% comment %}
{% endcomment %}

© {% now 'Y' %} {{white_label_company_name}}. All rights resevered.