diff options
Diffstat (limited to 'app/templates/base/form.html')
| -rw-r--r-- | app/templates/base/form.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/templates/base/form.html b/app/templates/base/form.html index 440ea0e..8423a0c 100644 --- a/app/templates/base/form.html +++ b/app/templates/base/form.html @@ -13,9 +13,13 @@ {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} - <div class="notification is-{{ category }}"> - {{ message }} - </div> + {% if category == "message" %} + <div class="notification is-info"> + {% else %} + <div class="notification is-{{ category }}"> + {% endif %} + {{ message }} + </div> {% endfor %} {% endif %} {% endwith %} |
