{% extends 'base.jinja.html' %} {% block page_title %} {{ l.settings_page_title }} {% endblock %} {% block add_js %} {% endblock %} {% block page %}

{{ l.settings_page_title }}

{% if request.args.get('error') %}
{{ request.args.get('error') }}
{% endif %}

{{ l.settings_variable_panel_system_variables }}

{% with variables=system_variables %} {% include 'settings/component/table.jinja.html' %} {% endwith %}

{{ l.settings_variable_panel_plugin_variables }}

{% with variables=plugin_variables %} {% include 'settings/component/table.jinja.html' %} {% endwith %}
{% endblock %}