You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 %}
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: