{% load wagtailcore_tags %}
{% if value.titulo %}

{{ value.titulo }}

{% if value.descricao %}

{{ value.descricao }}

{% endif %}
{% endif %}
{% csrf_token %}
{% for campo in value.campos %}
{% if campo.block_type == 'nome_completo_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'text_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'email_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'phone_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'cpf_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'textarea_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'dropdown_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'radio_field' %}
{{ campo.value.label }} {% if campo.value.required %}*{% endif %} {% for opcao in campo.value.choices %}
{% endfor %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %}
{% elif campo.block_type == 'checkbox_field' %}
{% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %}
{% elif campo.block_type == 'checkbox_multiple_field' %}
{{ campo.value.label }} {% if campo.value.required %}*{% endif %} {% for opcao in campo.value.choices %}
{% endfor %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %}
{{ campo.value.label }} {% if campo.value.required %}*{% endif %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'number_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'date_field' %} {% if campo.value.help_text %} {{ campo.value.help_text }} {% endif %} {% elif campo.block_type == 'section_header' %}

{{ campo.value.title }}

{% if campo.value.subtitle %}

{{ campo.value.subtitle }}

{% endif %}
{% elif campo.block_type == 'info_text' %}
{{ campo.value.text }}
{% elif campo.block_type == 'divider' %}
{% else %}
Campo não suportado: {{ campo.block_type }}
{% endif %}
{% endfor %}