Skip to content

Instantly share code, notes, and snippets.

@victorkristof
Created March 26, 2015 12:52
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save victorkristof/fc16173c356b79f951d2 to your computer and use it in GitHub Desktop.
Save victorkristof/fc16173c356b79f951d2 to your computer and use it in GitHub Desktop.
Flask flash messages as Bootstrap alert.
{% with messages = get_flashed_messages(with_categories=true) %}
<!-- Categories: success (green), info (blue), warning (yellow), danger (red) -->
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }} alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<!-- <strong>Title</strong> --> {{ message }}
</div>
{% endfor %}
{% endif %}
{% endwith %}
@therishidesai
Copy link

The alert won't close.

@victorkristof
Copy link
Author

Because you need to use the alerts JavaScript plugin as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment