{% extends 'base.html' %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load static %} {% load i18n %} {% block body_class %}system-page{% endblock %} {% block container %}
{% include 'messages.html' %}
{% for section_item in menu_items %}
{{ section_item.name }}
{% for item in section_item.sorted_items %} {% if advanced_mode or not item.advanced %} {% include "card.html" %} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}