{# /** * @file * Theme override for the status report. * * Available variables: * - requirements: Contains multiple requirement instances. * Each requirement contains: * - title: The title of the requirement. * - value: (optional) The requirement's status. * - description: (optional) The requirement's description. * - severity_title: The title of the severity. * - severity_status: Indicates the severity status. * * @see template_preprocess_status_report() */ #} {% for requirement in requirements %} {% if requirement.severity_status in ['warning', 'error'] %} {% endfor %}
{{ requirement.severity_title }} {% else %} {% endif %} {{ requirement.title }} {{ requirement.value }} {% if requirement.description %}
{{ requirement.description }}
{% endif %}