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
28
votes
3 answers

Django - How to track if a user is online/offline in realtime?

I'm considering to use django-notifications and Web Sockets to send real-time notifications to iOS/Android and Web apps. So I'll probably use Django Channels. Can I use Django Channels to track online status of an user real-time? If yes then how I…
Fabio
  • 1,272
  • 3
  • 21
  • 41
11
votes
1 answer

How to use django-notification to inform a user when somebody comments on their post

I have been developing in django for sometime now, and have developed a neat website having functionality such as writing blogs, posting questions, sharing content etc. However there is still one thing that is missing and i.e. creating notification…
Sachin
  • 3,672
  • 9
  • 55
  • 96
8
votes
2 answers

How do I display notifications from `django-notification`?

I've been reading the docs for django-notification, and they seem to cover creating notifications just fine, but not how to display them to users. Is there a good reference for this out there, and my Google-fu has just failed me? If not, can someone…
Hank Gay
  • 70,339
  • 36
  • 160
  • 222
7
votes
2 answers

Facebook like notification updates using django signal or notification

How can i use django-notifications or django-signals to make something like facebook updates notification that shows in the user profile if any other user likes or posts comments on user's blog or posts?
G Gill
  • 1,087
  • 1
  • 12
  • 24
4
votes
1 answer

django-notification & django-mailer... how do they work together?

I'm looking at implementing some email notification in my app. Django-notification or Django-mailer both look appropriate. I'm reading through the docs and trying to figure out how they work together. from the…
w--
  • 6,427
  • 12
  • 54
  • 92
4
votes
2 answers

Push notification to specific web client in Django

For this question, I don't have any code samples as I don't know where to start. How do I make use of Django and Node to push notifications only to a specific web client? For example, user A performs an activity. For confirmation of said activity,…
Newtt
  • 6,050
  • 13
  • 68
  • 106
3
votes
0 answers

Removing Django notification by disconnecting signal in django-notifications-hq

I am intending to remove a notification in the django-notifications-hq package by disconnecting the signal in my views after a signal is created: As an example: def view1: notify.send(sender=user, recipient=other_user, verb=message,…
ashes999
  • 1,234
  • 1
  • 12
  • 36
3
votes
1 answer

create facebook like notification system in django

Say user a liked user b. I want to show this as a notification in the notification panel of user b when she logs in. She can also view her previous notifications (basically like facebook notification). This is not email notification or a…
3
votes
1 answer

django-notifications-hq: cannot show notifications

while the 'unread_list' API works, I cannot get the tag {% live_notify_list list_class="dropdown-menu" %} to work. The tag definition is: def live_notify_list(list_class='live_notify_list'): html = "
DevKing
  • 211
  • 5
  • 14
3
votes
1 answer

Anonymous actors in activity streams

I'm working with a system that has a number of notifications around the creation of items within groups and am trying to model anonymous actors in notifications. Consider the contrived example: A Book belongs to a Library, and I am a user of the…
user764357
2
votes
1 answer

Django-Notification - Alternative to Email Backend

I'm building a project with Django, and am currently trying to implement django-notification as a means to keep track of user activity. While I managed to install it and create some notifications, they are only sent via email but not stored in the…
kmh
  • 391
  • 3
  • 13
2
votes
1 answer

How to hide 0 notification count in django-notifications-hq

I ham trying to hide the notification count when it's 0 in django-notifications-hq I have tried the below method but it is not updating regularly and displaying the number correctly. {% live_notify_badge as nc %} {% if nc >…
ashes999
  • 1,234
  • 1
  • 12
  • 36
2
votes
1 answer

Should I use django-activity-stream combined with django-notifications?

I'm discovering django-activity-stream, I would like to use it on our website for showing a news feed based on follow relationships (like Twitter) and a profile feed. It seems perfect for doing this. However, it doesn't seem really great for…
Ambroise Collon
  • 3,839
  • 3
  • 18
  • 37
2
votes
2 answers

Django Unread Messages System

I am currently in the process of implementing a Django based peer to peer quizzing system wherein a user can challenge another user for a quiz.(Much like quizup). I have implemented nearly all the major components of it and the last remaining one is…
404
  • 97
  • 3
  • 12
2
votes
1 answer

Sending Bulk email in Django

I have to send bulk email in django, the email template will be will be customized and the some data in the template will be coming from db. i twas using django notification but it can only send email to the registered users. I have to send emails…
Nilesh
  • 167
  • 1
  • 4
  • 17
1
2 3 4 5