{% endif %}
{% endmacro %}
{% extends 'base/utils.html' %}
{# This macro was part of Flask-Bootstrap and was modified under the terms of
its BSD License. Copyright (c) 2013, Marc Brinkmann. All rights reserved. #}
{# versionadded: New in 1.2.0 #}
{% macro render_toast(messages=None, container=False, transform={
'critical': 'danger',
'error': 'danger',
'info': 'info',
'warning': 'warning',
'debug': 'primary',
'notset': 'primary',
'message': 'primary',
}, default_category=config.BOOTSTRAP_MSG_CATEGORY, dismissible=False, dismiss_animate=False) -%}
{% with messages = messages or get_flashed_messages(with_categories=True) -%}
{% if messages -%} {# don't output anything if there are no messages #}