{{ "Application Info"|t('app') }}

{% for label, value in appInfo %} {% endfor %}
{{ label }} {{ value }}

{{ "Plugins"|t('app') }}

{% if plugins|length %} {% for plugin in plugins %} {% endfor %}
{{ plugin.name }} {{ plugin.version }}
{% else %}

{{ 'No plugins are enabled.'|t('app') }}

{% endif %}

{{ 'Modules'|t('app') }}

{% if modules|length %} {% for id, class in modules %} {% endfor %}
{{ id }} {{ class }}
{% else %}

{{ 'No modules are installed.'|t('app') }}

{% endif %}

{{ "Requirements"|t('app') }}

{% for requirement in requirements %} {% endfor %}
{% if requirement.error %} {% elseif requirement.warning %} {% else %} {% endif %} {{ requirement.name }}{% if requirement.memo %} {{ requirement.memo|raw }}{% endif %}