{% extends 'admin.html' %} {% block title %} {% trans %}System Info{% endtrans %} {% endblock %} {% set admin_nav_active="sysinfo" %} {% block content %} {% set section_items = [ (_('Application Version'), [(_('Core Version'), version)] + plugins|d([]) ), (_('Application Config'), cfg.items()), (_('System usage'), hwinfo), (_('Operating System Info'), osinfo), (_('Dependencies Version'), ldapinfo), (_('Python Info'), pyinfo),]%} {% for section_name, items in section_items %}

{{ section_name }}

{% for k, v in items %} {% endfor %}
Description Value
{{k}} {{v}}
{% endfor %} {% endblock %}