{# Copyright (C) 2020-2026 Graz University of Technology. invenio-override is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. Overrides: invenio_theme/macros/messages.html Changes: - Redesigned flash message layout with category icons and a close button. - Wraps each message in a flashed-wrapper div for positioning. #} {%- macro flashed_messages(center_text=false) -%} {%- block messages scoped %} {%- for category, msg in get_flashed_messages(with_categories=True) %} {%- set category = 'info' if category not in ['info', 'error', 'warning', 'success'] else category %}
{%- if category == 'success' %} {%- elif category == 'warning' %} {%- elif category == 'error' %} {%- else %} {%- endif %} {{ msg }}
{%- endfor %} {%- endblock messages %} {%- endmacro %}