{% extends get_master_template %} {% load djf_survey_tags i18n static %} {% block extra_css %} {% endblock %} {% block content %}

{{ title_page }}

{{ sub_title_page|safe }}
{% csrf_token %} {% for field in form %}
{% if field.field.widget.input_type == 'radio' or field.field.widget.input_type == 'checkbox' %} {{ field }} {% else %} {{ field|addclass:'w-full p-4 pr-12 text-sm border-gray-500 rounded-lg shadow-sm' }} {% endif %}

{{ field.help_text }}

{{ field.errors }}
{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}