You are here

status-messages.html.twig in Drupal 10

Default theme implementation for status messages.

Displays status, error, and warning messages, grouped by type.

An invisible heading identifies the messages for assistive technology. Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html for info.

Add an ARIA label to the contentinfo area so that assistive technology user agents will better describe this landmark.

Available variables:

  • message_list: List of messages to be displayed, grouped by type.
  • status_headings: List of all status types.
  • attributes: HTML attributes for the element, including:
    • class: HTML classes.

File

core/modules/system/templates/status-messages.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for status messages.
  5. *
  6. * Displays status, error, and warning messages, grouped by type.
  7. *
  8. * An invisible heading identifies the messages for assistive technology.
  9. * Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html
  10. * for info.
  11. *
  12. * Add an ARIA label to the contentinfo area so that assistive technology
  13. * user agents will better describe this landmark.
  14. *
  15. * Available variables:
  16. * - message_list: List of messages to be displayed, grouped by type.
  17. * - status_headings: List of all status types.
  18. * - attributes: HTML attributes for the element, including:
  19. * - class: HTML classes.
  20. *
  21. * @ingroup themeable
  22. */
  23. #}
  24. <div data-drupal-messages>
  25. {% for type, messages in message_list %}
  26. <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes|without('role', 'aria-label') }}>
  27. {% if type == 'error' %}
  28. <div role="alert">
  29. {% endif %}
  30. {% if status_headings[type] %}
  31. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  32. {% endif %}
  33. {% if messages|length > 1 %}
  34. <ul>
  35. {% for message in messages %}
  36. <li>{{ message }}</li>
  37. {% endfor %}
  38. </ul>
  39. {% else %}
  40. {{ messages|first }}
  41. {% endif %}
  42. {% if type == 'error' %}
  43. </div>
  44. {% endif %}
  45. </div>
  46. {% endfor %}
  47. </div>

Related topics