Is there a Django application that notifies the user of what happened on your network and ask him to take an action?

I mean, is there any universal application that you can use to create notifications, for example, when on Facebook, someone adds you as a friend or invites you to an event?

Basically, I need to show the user this type of notification for another type of content, with the ability to do some user actions (ignore, accept, etc.) differently for each.

I wonder if anyone has done this before, so I can connect it and create a notification type by simply passing in the notification text, the parameters that should be displayed, and the views to call for each option.

Thank.

+5
source share
4 answers

django-notifications is a GitHub notification application and it is based on the Django activity stream .

If you are familiar with django-activity-stream, using django notifications is almost the same.

django notifications also provide a notifications_unreadtemplatetag to display the unread notifications of the current login user.

+5
source

Django Activity Stream does this for the most part. This is a general relationship manager that monitors the storage of events in the database, and when the condition is met, it puts "the event happened!". write to your tables.

, ( ), .

, , , .

+1

Perhaps this is closer to my needs: Django notification https://github.com/jtauber/django-notification

any experience with this?

0
source

There is also django-notify: http://code.google.com/p/django-notify/

0
source

All Articles