{% 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 %}
-------------------------
{% for choice in question.choices %}
{{choice}}
{% endfor %}
{% elif question.type == "multiple" %}
{% if question.is_mandatory %}
{{ question.question }}
* {% trans "Mandatory Question" %}
{% else %}
{{ question.question }}
{% endif %}
{% for choice in question.choices %}
{{ choice }}
{% endfor %}
{% 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 %}
5 stars
4 stars
3 stars
2 stars
1 star
{% 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 %}
{% trans "Save" %}
{% endcomment %}
© {% now 'Y' %} {{white_label_company_name}}. All rights resevered.