Skip to content

πŸš€ Django's MessagesΒ #114

@paOmer

Description

@paOmer

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions