{# SPDX-FileCopyrightText: Fondation RERO+ #} {# SPDX-License-Identifier: BSD-3-Clause #} {# Feedback toast, used both for the messages flashed by the server and for the ones the browser raises on its own. `autoshow` marks a toast that wiki.js reveals as soon as the page is ready; the others are revealed by their id. #} {% macro toast(message, category='message', id=None, autoshow=False) %} {% set colors = {'success': 'text-success', 'error': 'text-danger', 'danger': 'text-danger'} %}
{% endmacro %}