disply errors on wishlist
This commit is contained in:
parent
375e3ebec5
commit
7c2b895820
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,11 @@
|
|||
{% block title %}Whishlist{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% for message in app.flashes('error') %}
|
||||
<div class="alert alert-error" role="alert">
|
||||
{{ message }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% for message in app.flashes('success') %}
|
||||
<div class="alert alert-success" role="alert">
|
||||
{{ message }}
|
||||
|
|
Reference in a new issue