{% extends 'administration/base.html.twig' %} {% block title %}{{ 'admin.modules'|trans }}{% endblock %} {% block body %}
{# Kopfbereich #}

{{ 'admin.modules'|trans }}

{{ 'admin.modules_overview_hint'|trans }}

{{ 'admin.modules_no_match'|trans }}

{% set groupIcons = { 'content': 'bi-chat-dots', 'seo': 'bi-search-heart', 'operations': 'bi-gear-wide-connected', 'system': 'bi-cpu' } %}
{% for groupKey in moduleGroupOrder %} {% if modulesGrouped[groupKey] is defined and modulesGrouped[groupKey]|length > 0 %}

{{ ('admin.modules_group_' ~ groupKey)|trans }}

{{ modulesGrouped[groupKey]|length }}
{% for module in modulesGrouped[groupKey] %} {% set title = module.name|trans %} {% set desc = module.description|trans %}

{{ title }}

{{ desc }}

{% endfor %}
{% endif %} {% endfor %} {% if modulesGrouped is empty %}

{{ 'admin.no_modules_found'|trans }}

{% endif %}
{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascriptBottom %} {% endblock %}