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

How To Tell Django Ive Overridden A Third Party App

Im wanting to add functionality to a Django-Notifications view. I guess the best way to do this is to override the class, add my custom logic, then pass the class to super: from notifications import AllNotificationsList class…
horse
  • 479
  • 7
  • 25
0
votes
1 answer

Adding A Section To Admin Page

Ive changed certain parts of my admin page and played around extending the templates (so I have the file structure set up and working). I now want to go a bit further. I want to add a column next to the 'recent activity' column on the admin page…
horse
  • 479
  • 7
  • 25
0
votes
2 answers

How to push notification in django rest api for implementing it in mobile app?

I am working on django api project and kind of stucked in pushing notification can anyone give me idea how do i push notification by saving it into my database? For example, If a user followed another user then the followed user should be notified…
0
votes
2 answers

How to fetch and display real-time user notifications in angular?

I am working with django-notification and I am trying to fetch and display the notifications on my angular app. So how should I fetch the data from the backend to make it real-time? Should I periodically fetch data using something like setTimeout?…
Nebex Elias
  • 252
  • 1
  • 3
  • 14
0
votes
1 answer

How to get push-notification in django when database has been updated with a new entry?

I want to generate a push-notification whenever the database entry is updated if the current ID is 2 and a new tuple is added the id would be 3. so how can i be notified if that new id has been added to the database? The data entry is done on the…
Hassan Ikram
  • 61
  • 1
  • 12
0
votes
1 answer

Django-notifications serialize target rest framework

I'm trying to add Django-notifications to my drf project. I get response when hitting the endpoint: [ { "recipient": { "id": 274, "username": "harry", "first_name": "Harry", "last_name":…
Harry Moreno
  • 10,231
  • 7
  • 64
  • 116
0
votes
1 answer

django-notification not sending email by default

Question, I have created my NEW notification, my NEW notification templates for it. Once a user performs a particular action it creates the new record but no email gets sent. Is django-notification suppose to send automatic emails to the user? def…
ApPeL
  • 4,801
  • 9
  • 47
  • 84
0
votes
1 answer

Push notification in django rest

I am working on a attendance registration system where a user of an office can make a leave request. When any user makes a leave request, it must be notified to admin. How do I implement it ? I had seen django-fcm for push notification. But I am…
0
votes
0 answers

Send alert message(data) from one login user session to another

I have a use case where a user (manager) creates a task (1st view) and another logged in user (employee) can view the task created (2nd view). If the employee rejects the task clicking reject button, an alert should notify the manager. How do I…
0
votes
3 answers

Django-notification invalid literal for int() with base 10

I'm using django-notification to create notifications. based on it's documention I putted: url(r'^inbox/notifications/', include(notifications.urls, namespace='notifications')), in my urls.py. I generate a notification for test by using this in my…
SirSaleh
  • 1,452
  • 3
  • 23
  • 39
0
votes
3 answers

How to serve data on every view at every URL endpoint

The reason for my wanting to serve the same view at every URL endpoint, is because the view sends Notification information to the authenticated user. For example, here is the view which has data that I would like served in every page: class…
Jay Jung
  • 1,805
  • 3
  • 23
  • 46
0
votes
1 answer

How can i implement real time notifications in django?

I have read many blogs regarding this but could not understand. Can someone help me in this like what are the different ways of doing it and how to implements this.
Mubashshir
  • 171
  • 3
  • 10
0
votes
0 answers

Django multiple duplications

I'm using django notifications, but when unread notifications increasing, loading time and duplication times are also increasing. How can I optimize this code ? {% for notification in request.user.notifications.unread %} …
Natiq Vahabov
  • 495
  • 4
  • 13
0
votes
1 answer

How to integrate notification feature to Custom User in Django

I have gone through many blogs and apps, mostly all the apps are integrating notifications feature using Django auth user, So if there is any way or blog for it that would be helpful. Problem That i am facing is i have defined my user model…
Yash Rastogi
  • 465
  • 4
  • 14
0
votes
2 answers

django-notification changing default template

I'm attempting use django-notification to send an email to the admin every time a user modifies, creates or deletes a database entry. The issue is, while I have created the notice types and confirm they exist, when the actual email is sent, the…
Kenny
  • 117
  • 3
  • 13