You insert following in your base template:
{% if messages %} <div class="row"> <div class="col-lg-12 col-md-12 col-12"> {% for message in messages %} <div class="alert {% if message.tags %} alert-{{ message.tags }}{% endif %}">{{ message|safe }} </div> {% endfor %} {% endif %} {% if form.errors %} <div class="alert alert-danger alert-dismissible col-12 mx-1" role="alert"> <div id="form_errors"> {% for key, value in form.errors.items %} <span class="fieldWrapper"> {{ key }}:{{ value }} </span> {% endfor %} </div> </div> </div> </div> {% endif %} gautam...@gmail.com schrieb am Mittwoch, 2. Februar 2022 um 17:12:16 UTC+1: > How to use fee due notifications in django something helpe > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/a61fb3f8-ce19-4a6d-b522-a84eac16862dn%40googlegroups.com.