Questions tagged [django-notification]

Django-notification is a pluggable django app for user notification management

Django-notification is a pluggable django app for user notification management

Quote from docs:

The project aims to provide a Django app for this sort of functionality. This includes:

  • submission of notification messages by other apps
  • notification messages on signing in
  • notification messages via email (configurable by user)
  • notification messages via feed
65 questions
0
votes
1 answer

IntegrityError while trying to send a notification with django-notifications

I've installed django-notifications via pip, added the app to my INSTALLED_APPS: INSTALLED_APPS = ( 'django.contrib.auth', ... 'notifications', ... ) Updated my URLConf: import notifications urlpatterns = patterns('', ... …
César
  • 9,939
  • 6
  • 53
  • 74
0
votes
1 answer

django-notification. How can I use threading email send?

In my django application I am using django-notification to send notifications. However I noticed that in some cases (when sending multiple notifications) my web application is giving delayed responses. Although I am sending notifications through…
xpanta
  • 8,124
  • 15
  • 60
  • 104
0
votes
1 answer

How is django-messages creating notification types during syncdb?

I am using the django-notification and django-messages projects together, and taking advantage of the django-notifications integration built in to django-messages with its default notice types for when messages are received, replied to,…
gravelpot
  • 1,677
  • 1
  • 14
  • 20
-1
votes
1 answer

how to create realtime notification in django without using django channels

For every action such as- log in sign up password reset Notifications should be seen to the user with a notification bell icon (just like Facebook) where real-time notifications are shown according to each action performed. Also, an email should…
-2
votes
2 answers

Notification in django rest API

I want to make a notification system in django so that, when you add a new entry to the database I get notified. As admin I do everything in the Django Rest API
1 2 3 4
5