0👍
you can try this
{% for message in messages %}
<div class="alert alert-{{ message.tags }} alert-dismissible fade show" role="alert">
{{ message }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
{% endfor %}
- [Answered ]-How can I serialize the Transaction model in django rest framework
- [Answered ]-Extending Django templates with a form
Source:stackexchange.com