{% 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 %} {# Where the value in the box came from. Without this a field showing something nobody here typed reads as a mystery, and the answer is usually the product's own .env. #} {% if sources[f.key] == 'environment' %} Currently set by the product configuration ({{ f.env or (schema.feature ~ '_' ~ f.key) | upper }}). Changing it here overrides that. {% elif sources[f.key] == 'panel' %} Set here, overriding the product configuration. {% endif %}
{% endfor %}
{% endblock %}