{% extends "base/base.html" %} {% block website_head %} {% load static %} {% load custom_tags %} {% load widget_tweaks %} {% load i18n %} {{ title }} {% endblock website_head %} {% block navigation_holder %} {% include "components/sidebar/sidebar_label_expanded.html" %} {% endblock navigation_holder %} {% block website_body %}
{% csrf_token %} {% for section in data %}

{% if section|check_string_show %}

{% if section|check_string_show %}
{% else%}
{% endif %}
{% for fields in data|get_item:section %} {% if fields.title %}
{% if fields.sub_type == "drop_down" %}

{% if fields.type == "image" %} {% with form_field=form|get_form_field:fields.form_name %}
{% render_field form_field class="form-control" autocomplete="off"%} {% endwith %} {% include 'components/main/image_field_display.html' %} {% else %} {% with form_field=form|get_form_field:fields.form_name %} {% render_field form_field class="form-control" id="floatingInput" autocomplete="off"%} {% endwith %} {% include 'components/main/comments_display.html' %} {% endif %}
{% else %} {% include "components/main/input_field.html" with mult_value="False" %} {% endif %}
{% elif not fields.title or fields.expandable_field %} {% for mut_val_field_unproccesed in fields %}

{% for mult_val_field in fields|get_item:mut_val_field_unproccesed%} {% with fields=mult_val_field %} {% include "components/main/input_field.html" with mult_value="True" %} {% endwith %} {% endfor %}
{% endfor %} {% endif %} {% endfor %}
{% endfor %}
{% endblock website_body %} {% block additional_dom_scripts %} {% endblock additional_dom_scripts %}