dsfr4drupal-1.x-dev/templates/system/status-report-general-info.html.twig
templates/system/status-report-general-info.html.twig
<h2>{{ 'General System Information'|t }}</h2>
<div class="fr-grid-row fr-grid-row--gutters fr-mb-4v">
<div class="fr-col-12 fr-col-md-6">
<div class="system-status-general-info__item">
<h3 class="fr-h5 system-status-general-info__item-title">{{ 'Drupal Version'|t }}</h3>
{{ drupal.value }}
{% if drupal.description %}
{{ drupal.description }}
{% endif %}
</div>
</div>
<div class="fr-col-12 fr-col-md-6">
<div class="system-status-general-info__item">
<h3 class="fr-h5 system-status-general-info__item-title">{{ 'Web Server'|t }}</h3>
{{ webserver.value }}
{% if webserver.description %}
{{ webserver.description }}
{% endif %}
</div>
</div>
<div class="fr-col-12 fr-col-md-6">
<div class="system-status-general-info__item">
<h3 class="fr-h5 system-status-general-info__item-title">{{ 'PHP'|t }}</h3>
<h4 class="fr-h6">{{ 'Version'|t }}</h4> {{ php.value }}
{% if php.description %}
{{ php.description }}
{% endif %}
<h4 class="fr-h6">{{ 'Memory limit'|t }}</h4>{{ php_memory_limit.value }}
{% if php_memory_limit.description %}
{{ php_memory_limit.description }}
{% endif %}
</div>
</div>
<div class="fr-col-12 fr-col-md-6">
<div class="system-status-general-info__item">
<h3 class="fr-h5 system-status-general-info__item-title">{{ 'Database'|t }}</h3>
<h4 class="fr-h6">{{ 'Version'|t }}</h4>{{ database_system_version.value }}
{% if database_system_version.description %}
{{ database_system_version.description }}
{% endif %}
<h4 class="fr-h6">{{ 'System'|t }}</h4>{{ database_system.value }}
{% if database_system.description %}
{{ database_system.description }}
{% endif %}
</div>
</div>
<div class="fr-col-12">
<div class="system-status-general-info__item">
<h3 class="fr-h5 system-status-general-info__item-title">{{ 'Last Cron Run'|t }}</h3>
{{ cron.value }}
{% if cron.run_cron %}
{{ cron.run_cron }}
{% endif %}
{% if cron.description %}
{{ cron.description }}
{% endif %}
</div>
</div>
</div>
