Installation

Get it from pip with:

pip install django-notifs

Include it in settings.INSTALLED_APPS:

INSTALLED_APPS = (
    'django.contrib.auth',
    ...
    'notifications',
    'django_jsonfield_backport'  # backport of JSONField for Django < 3.0
    ...
)

Finally don’t forget to run the migrations with:

python manage.py migrate notifications