Published
- 1 min read
django 3.2 show messages template
The solution for this is noted below
django 3.2 show messages template
Solution
<div class="container">
{% if messages %}
{% for message in messages %}
<div class="alert alert-{{ message.tags }}">
{{ message|safe }}
</div>
{% endfor %}
{% endif %}
{% block content %}{% endblock content %}
</div>
Try other methods by searching on the site. That is if this doesn’t work