diff --git a/templates/base.html b/templates/base.html index eebfc7be4..c934b520d 100644 --- a/templates/base.html +++ b/templates/base.html @@ -26,7 +26,16 @@ {% block content_container %} {# FIXME: row class is not for that: replace it keeping the layout (notice width) #}
- {% block content %}{% endblock %} + + {# Feedback messages #} + {% for message in messages %} +
+ {{ message|safe }} + × +
+ {% endfor %} + + {% block content %}{% endblock %}
{% endblock %}