{% extends theme("layout.html") %} {% macro show_settings(found, head2) %} {% for name, value in found %} {% if isinstance(value, list) and len(value) > 1 %} {% elif isinstance(value, dict) and len(value) > 1 %} {% else %} {% endif %} {% endfor %}
{{ _('Variable Name') }} {{ head2 }}
{% if name in settings %} {{ name }} {% else %} {{ name }} {% endif %} [
{% for entry in value | sort %} {{ "%r" % (entry, ) }},
{% endfor %} ]
{
{% for key, val in value.items() | sort %} {{ "%r" % (key, ) }}: {{ "%r" % (val, ) }},
{% endfor %} }
{{ "%r" % (value, ) }}
{% endmacro %} {% block content %}

{{ _("Show Wiki Configuration") }}

{{ _("Customized Configuration Settings") }}

{{ _("This table shows all settings in this wiki that do not have default values. " "Settings that the configuration system doesn't know about are shown in italic, " "those may be due to third-party extensions needing configuration or settings that " "were removed from Moin.") }}

{% set head2 = _('Setting') %} {{ show_settings(found, head2) }}

{{ _("Default configuration Settings") }}

{{ _("This table shows all settings in this wiki that retain their default values. ") }}

{% set head2 = _('Default Setting') %} {{ show_settings(found_default, head2) }} {% endblock %}