-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
Add a support at Django's Messages, meaning: make the messages visible to the user.
Suggestion: add the messages at the base template so it will be visible at any page of the website.
Django messages framework documentation.
Example code snippet:
this code also make a use of bootstrap alerts.
{% if messages %}
{% for message in messages %}
<div class="alert alert-{{ message.tags }}">
{{ message }}
</div>
{% endfor %}
{% endif %}
Reactions are currently unavailable