{% extends "layout.html" %} {% block content %}
Brome configuration
{% for section_id, section in form.fields.iteritems() %}
{{ section_id|replace("_", " ") }}
{% for field_id, field in section.iteritems() %} {% if field['visible'] %}
{% if field['type'] == 'input' %} {% elif field['type'] == 'password' %} {% elif field['type'] == 'number' %} {% elif field['type'] == 'checkbox' %} {% elif field['type'] == 'dropdown' %} {% endif %}
{% endif %} {% endfor %}
{% endfor %}

{% endblock %}