[Fixed]-Django-admin-notifications error

1👍

In your template you are trying to load notifications_tag:

{% load notifications_tag %}

or the name of the template tag file is notification_tag.
So, you should write

{% load notification_tag %}

whitout s.

👤doru

Leave a comment