20 lines
959 B
Twig
Executable file
20 lines
959 B
Twig
Executable file
{% extends 'admin.twig' %}
|
|
|
|
{% block content %}
|
|
{% if isSuperUser %}
|
|
<h2 piwik-enriched-headline>{{ 'Installation_SystemCheck'|translate }}</h2>
|
|
<p style="margin-left:1em;">
|
|
{% if infos.has_errors %}
|
|
<img src="plugins/Zeitgeist/images/error.png"/>
|
|
{{ 'Installation_SystemCheckSummaryThereWereErrors'|translate('<strong>','</strong>','<strong><em>','</em></strong>')|raw }} {{ 'Installation_SeeBelowForMoreInfo'|translate }}
|
|
{% elseif infos.has_warnings %}
|
|
<img src="plugins/Zeitgeist/images/warning.png"/>
|
|
{{ 'Installation_SystemCheckSummaryThereWereWarnings'|translate }} {{ 'Installation_SeeBelowForMoreInfo'|translate }}
|
|
{% else %}
|
|
<img src="plugins/Zeitgeist/images/ok.png"/>
|
|
{{ 'Installation_SystemCheckSummaryNoProblems'|translate }}
|
|
{% endif %}
|
|
</p>
|
|
{% include "@Installation/_systemCheckSection.twig" %}
|
|
{% endif %}
|
|
{% endblock %}
|