dsfr4drupal-1.x-dev/templates/system/status-messages.html.twig
templates/system/status-messages.html.twig
<div data-drupal-messages>
{% for type, messages in message_list %}
{% for message in messages %}
{{ include('dsfr4drupal:alert', {
'attributes': create_attribute({'role': (type == 'warning' or type == 'error' ? 'alert' : 'status') }),
'type': (type == 'status') ? 'success' : type,
'content': message,
'has_button': true,
}, with_context=false) }}
{% endfor %}
{% endfor %}
</div>
