{% from "components/icon.html" import Icon %} {% macro Alert(title, message=None, actions=None, level='info', fragment=None) -%} {% set role = 'alertdialog' if actions else 'alert' %} {% set levels = { 'warning': { 'icon': 'alert', 'tone': 'assertive' }, 'error': { 'icon': 'alert', 'tone': 'assertive' }, 'info': { 'icon': 'info', 'tone': 'polite' }, 'success': { 'icon': 'ok', 'tone': 'polite' } } %}