{% extends 'about/layout.html.twig' %} {% import "macros/widgets.html.twig" as widgets %} {% block page_subtitle %}{{ 'about.subtitle'|trans({}, 'about') }}{% endblock %} {% block about_box %} {% if is_granted('system_actions') %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' with {'boxtype': 'warning'} %} {% block box_title %}{{ 'label.actions'|trans }}{% endblock %} {% block box_body %} {% if content_action is defined and content_action is not empty %}
                    {{ content_action }}
                    
{% endif %}

Clear cache

{% endblock %} {% endembed %} {% endif %} {% endblock %} {% block about %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% block box_title %}Environment{% endblock %} {% block box_body %}
{% for name, value in dotenv %}
{{ name }}
{{ value }}
{% endfor %}
{% endblock %} {% endembed %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% block box_title %}PHP{% endblock %} {% block box_body %}
Version
{{ constant('PHP_VERSION') }}
Modules
{{ modules|join(', ') }}
{% for name, value in settings %}
{{ name }}
{% if value is empty %} unknown {% else %} {{ value }} {% endif %}
{% endfor %}
{% endblock %} {% endembed %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% block box_title %}Server{% endblock %} {% block box_body %}
{% for name, value in info %}
{{ name }}
{{ value|raw }}
{% endfor %}
{% endblock %} {% endembed %} {% endblock %}