status-messages.html.twig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. * - display: (optional) May have a value of 'status' or 'error' when only
  19. * displaying messages of that specific type.
  20. * - attributes: HTML attributes for the element, including:
  21. * - class: HTML classes.
  22. */
  23. #}
  24. {% block messages %}
  25. {% for type, messages in message_list %}
  26. {%
  27. set classes = [
  28. 'messages',
  29. 'messages--' ~ type,
  30. ]
  31. %}
  32. <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes.addClass(classes)|without('role', 'aria-label') }}>
  33. {% if type == 'error' %}
  34. <div role="alert">
  35. {% endif %}
  36. {% if status_headings[type] %}
  37. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  38. {% endif %}
  39. {% if messages|length > 1 %}
  40. <ul class="messages__list">
  41. {% for message in messages %}
  42. <li class="messages__item">{{ message }}</li>
  43. {% endfor %}
  44. </ul>
  45. {% else %}
  46. {{ messages|first }}
  47. {% endif %}
  48. {% if type == 'error' %}
  49. </div>
  50. {% endif %}
  51. </div>
  52. {# Remove type specific classes. #}
  53. {% set attributes = attributes.removeClass(classes) %}
  54. {% endfor %}
  55. {% endblock messages %}