{% extends "admin/layout.html" %} {% block title %}{{ _("Configuration Editor") }}{% endblock %} {% block contents %}

{{ _("Configuration Editor") }}

{% trans %} Here you can tune all registered configuration values. Note that some of them (especially the core configuration values) can easily break your installation if set to an illegal value. Don't alter any of those values if you don't know what effect they have. This editor is especially useful if you want to configure plugins that don't provide a configuration page (yet). {% endtrans %}

{% call form() %} {% if editor_enabled %} {% for category in form.values %} {%- for field in category %} {%- if field['value'].errors %}
{{ category.localname }}
{{ field.localname|e }} {{ field['value'].render() }} {{ field.use_default() }}
 {{ field['value'].errors() }}  {%- endif %} {%- if field['value'].help_text %}
 {{ field['value'].help_text|e }}  {%- endif %} {%- endfor %} {% endfor %}
{% else %}

{% trans %} The configuration editor is disabled because of this. If you really want to use it, click the button to proceed. {% endtrans %}

{% endif %} {% endcall %} {% endblock %}