{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Manage menus' | trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{% if menus|length > 0 %}
{% for menu in menus %} {% endfor %}
{{'Name' | trans}} {{'Header' | trans}} {{'Elements' | trans}}
{{ menu.name }} {{ menu.header }} {{ menu.menuElements|length }}
{% else %} {% include "Global/message.html.twig" with { type: "info", message: ('No menus found'|trans), icon: "fas fa-exclamation-circle" } %} {% endif %}
{% endblock %}