{% extends 'layout.html' %} {% set breadcrumbs = breadcrumb_page('admin') + breadcrumb_page(self) %} {% block content %}

{{ active_page.label }}

{# Right Column #}
{% trans %}Application Config{% endtrans %}
{% for key, value in cfg.items() %} {% endfor %}
{{ key }} {{ value }}
{# Left Column #}
{% set section_items = [ (_('Application Version'), [(_('Core Version'), version)] + plugins|d([]), 'bi-box-seam'), (_('System usage'), hwinfo, 'bi-speedometer2'), (_('Operating System Info'), osinfo, 'bi-pc-display'), (_('Dependencies'), ldapinfo, 'bi-puzzle'), (_('Python Info'), pyinfo, 'bi-braces'), ] %} {% for section_name, items, icon in section_items %}
{{ section_name }}
{% for key, value in items %} {% endfor %}
{{ key }} {{ value }}
{% endfor %}
{% endblock %}