{% extends 'base.html' %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load i18n %} {% load static %} {% block container %}
{% include 'messages.html' %}
{% block tags %}{% endblock %}
{% for item in menu_items %} {% if not show_disabled or item.is_enabled %} {% if advanced_mode or not item.advanced %} {% include "card.html" %} {% endif %} {% endif %} {% endfor %}
{% if show_disabled %}
{% trans "Disabled" %}
{% for item in menu_items %} {% if not item.is_enabled %} {% if advanced_mode or not item.advanced %} {% include "card.html" %} {% endif %} {% endif %} {% endfor %}
{% endif %} {% block content-container %} {% endblock %} {% endblock %}