You are here

status-messages.html.twig in Drupal 10

Test templates file with extra messages div.

File

core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Test templates file with extra messages div.
  5. */
  6. #}
  7. <div data-drupal-messages>
  8. {% block messages %}
  9. {% for type, messages in message_list %}
  10. {%
  11. set classes = [
  12. 'messages',
  13. 'messages--' ~ type,
  14. ]
  15. %}
  16. <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes.addClass(classes)|without('role', 'aria-label') }}>
  17. {% if type == 'error' %}
  18. <div role="alert">
  19. {% endif %}
  20. {% if status_headings[type] %}
  21. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  22. {% endif %}
  23. {% if messages|length > 1 %}
  24. <ul class="messages__list">
  25. {% for message in messages %}
  26. <li class="messages__item">{{ message }}</li>
  27. {% endfor %}
  28. </ul>
  29. {% else %}
  30. {{ messages|first }}
  31. {% endif %}
  32. {% if type == 'error' %}
  33. </div>
  34. {% endif %}
  35. </div>
  36. {# Remove type specific classes. #}
  37. {% set attributes = attributes.removeClass(classes) %}
  38. {% endfor %}
  39. {% endblock messages %}
  40. </div>
  41. <div data-drupal-messages-other></div>