redhat-beyond / JobSeeker

https://github.com/redhat-beyond/JobSeeker
MIT License
2 stars 5 forks source link

🚀 Django's Messages #114

Open paOmer opened 2 years ago

paOmer commented 2 years ago

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 %}