1{% extends 'admin.twig' %}
2{% set title %}{{ 'Installation_SystemCheck'|translate }}{% endset %}
3
4{% block content %}
5
6    <div piwik-content-block content-title="{{ title|e('html_attr') }}" feature="true">
7
8        {% if diagnosticReport.hasErrors() %}
9            <div class="alert alert-danger">
10                {{ 'Installation_SystemCheckSummaryThereWereErrors'|translate('<strong>','</strong>','<strong>','</strong>')|raw }}
11                {{ 'Installation_SeeBelowForMoreInfo'|translate }}
12            </div>
13        {% elseif diagnosticReport.hasWarnings() %}
14            <div class="alert alert-warning">
15                {{ 'Installation_SystemCheckSummaryThereWereWarnings'|translate }}
16                {{ 'Installation_SeeBelowForMoreInfo'|translate }}
17            </div>
18        {% else %}
19            <div class="alert alert-success">
20                {{ 'Installation_SystemCheckSummaryNoProblems'|translate }}
21            </div>
22        {% endif %}
23
24        {% include "@Installation/_systemCheckSection.twig" %}
25    </div>
26
27
28{% endblock %}
29