{% extends "base_template.html" %} {% block title %}{{ schema.title }} settings{% endblock %} {% block content %}

{{ schema.title }} settings

All settings
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %}
{% for f in schema.fields %}
{% if f.type == 'bool' %}
{% elif f.type == 'select' %} {% elif f.type == 'color' %} {% elif f.type == 'int' %} {% else %} {% endif %} {% if f.help %}{{ f.help }}{% endif %}
{% endfor %}
{% endblock %}