5👍
✅
Did you include the proper URL configurations? Looks like Django can’t find notification_notices in any of your urlconfs…
https://github.com/pinax/django-notification/blob/master/notification/urls.py
You should reference these in your site’s urls.py, e.g.:
urlpatterns = patterns('',
(r'^notification/', include(notification.urls)),
...
1👍
You will need to create an entry in your urls.py
file including the django-nofication urls.py file:
(r'^notifications/', include('notification.urls')),
See the Django docs for more information on including other urls.py
files.
Source:stackexchange.com