{% if pagecontent.form.result is not empty %} {% endif %}
{% for fdata in pagecontent.form.data %}
{{ fdata.title }} {% for field in fdata.fields %} {% if field is iterable %} {% if field.type is defined %} {% if field.type == 'text' or field.type == 'password' %}
{% elseif field.type == 'select' %}
{% elseif field.type == 'checkbox' %}
{% endif %} {% else %}
{% for radios in field.fields %}
{% endfor %}
{% endif %} {% endif %} {% endfor %}
{% endfor %}