{% extends '@Installer/installer/base.html.twig' %} {% block base_content %}

{{ "shopware.installer.requirements_header"|trans }}

{% if requirementChecks.hasError %}

{{ "shopware.installer.requirements_error_title"|trans }}

{{ "shopware.installer.requirements_error"|trans }}
{% else %}

{{ "shopware.installer.requirements_success_title"|trans }}

{{ "shopware.installer.requirements_success"|trans }}
{% endif %}

{{ "shopware.installer.requirements_header_files"|trans }}

{{ "shopware.installer.requirements_files_info"|trans }}

{% for pathCheck in requirementChecks.getPathChecks %} {% endfor %}
{{ "shopware.installer.requirements_table_files_col_check"|trans }} {{ "shopware.installer.requirements_table_files_col_status"|trans }}
{{ pathCheck.name }} {% if pathCheck.status == 'success' %} {{ "shopware.installer.requirements_status_ready"|trans }} {% else %} {{ "shopware.installer.requirements_status_error"|trans }} {% endif %}

{{ "shopware.installer.requirements_header_system"|trans }}

{{ "shopware.installer.requirements_php_info"|trans }}

{% for systemCheck in requirementChecks.getSystemChecks %} {% endfor %}
{{ "shopware.installer.requirements_system_col_check"|trans }} {{ "shopware.installer.requirements_system_col_status"|trans }} {{ "shopware.installer.requirements_system_col_required"|trans }} {{ "shopware.installer.requirements_system_col_found"|trans }}
{{ systemCheck.name }} {% if systemCheck.status == 'success' %} {{ "shopware.installer.requirements_status_ready"|trans }} {% elseif systemCheck.status == 'error' %} {{ "shopware.installer.requirements_status_error"|trans }} {% else %} {{ "shopware.installer.requirements_status_warning"|trans }} {% endif %} {{ systemCheck.requiredValue }} {{ systemCheck.installedValue }}
{% endblock %}