{% extends 'admin_panel/base.html' %} {% block ap_content %}

{{ _("List of config options") }}

{% for section in h.ap_get_config_sections() %} {% set accordion_id = "accordion-" + h.ap_munge_string(section.name) %}

{% for config in section.configs %}
  • {{ config.name }} {{ config.info or _("No description") }}
  • {% endfor %}
    {% endfor %}
    {% endblock ap_content %}