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
2
votes
2 answers

Django modify templates of pip-installed app

I'm wondering what the proper way to override templates for an app installed via pip. My example pertains to the django-notifications app. The structure is as follows: notifications |---- __init__.py |---- templates |---- notifications …
2
votes
1 answer

Django-notification -- create_notice_type hyped? And other questions

I have been intending to use django-notification in my django app. The docs are a little sparse for someone with my limited level of experience. I need a couple of clarifications about its usage. In the project's usage.txt, under the section…
chefsmart
  • 6,873
  • 9
  • 42
  • 47
2
votes
2 answers

Periodically fetch data and display it with Django

I would like to implement a kind of "real-time" notification system in my Django application. I would store some messages destined to a specific user in my database. When a user is logged in the application, if there is a notification for him in the…
Johanna
  • 1,343
  • 4
  • 25
  • 44
2
votes
1 answer

Notification without email

I am implementing a website using django and I want to allow users to decide if they want to receive emails or not. Is it possible to customize django-notification such that it doesn't send emails to some users? I can change the original app but I…
kelwinfc
  • 3,101
  • 2
  • 14
  • 10
1
vote
0 answers

Django-notifications-hq How to live update notifications to read

I've spent all day scouring a few versions of docs for this plugin, I've read through all of the tutorials I can find, and I went through every file in the repo to make note of all of it's parts. This ajax aspect is what I'm struggling with. my…
1
vote
1 answer

Django 3.0: django-notifications giving error: "Notification.recipient" must be a "User" instance

I am using django-notifications-hq package link of django-notifications-hq and getting error: Cannot assign "": "Notification.recipient" must be a "User" instance. my custom user model: class User(AbstractBaseUser): …
Yagami
  • 305
  • 2
  • 14
1
vote
1 answer

Setting django-notification types with migration (south)?

In tutorials (all over the place, since there is no official one), all kinds of places get suggested for placing notification.create_notice_type of django-notification, but wouldn't the most logical place be in a migration? Or is there a good reason…
markijbema
  • 3,985
  • 20
  • 32
1
vote
1 answer

how to use action object and target in django notifications

i"m working on a project with django something blogging like webapp. I'm using django notifications for my websites notification. i'm recieving notifications if someone comment on my post or like the post. However i can't go to the specific post…
1
vote
1 answer

How can I override the Ajax success data inside another on click function

Hello I am creating a notification.The notification_call is function that used to show the unreaded notifications on the bell icon But my issues is once I click the notification the count needs to be override and make it as a 0. Here is my Java…
Anoop
  • 505
  • 8
  • 23
1
vote
1 answer

check if user has a new release note and notify him

I want to find a simple way to notify users about a new release note without using django-notifications or adding a relation between user and release notes table in the database, using something like a flag that returns true once a new release note…
1
vote
1 answer

Django 2.0 Notifications: How to overwrite the default list.html page for django-notifications

So, I recently imported Django-notifications and have successfully added a notification or two. Now I want to look at the list page. In my urls I have added the notification endpoint path('notifications/', include("notifications.urls")), and when I…
Micah Pearce
  • 1,805
  • 3
  • 28
  • 61
1
vote
2 answers

Django redis for notifications

I have build a REST API with Django REST framework. In the app there is a need for facebook-type notifications ( new friend request, new message etc. ). Currently I'm handling this using long-polling: front client sends GET request my REST view…
1
vote
3 answers

Django-notification delete API from front-end

Can you please help me about django-notification??? I am able to implement it, but stuck in delete from front end using this API delete/(?P\d+)/ what I suppose to provide in place of (?P\d+)/ , when I call this API
1
vote
1 answer

how to send mail notification automatically using django modules?

I'm developing an app which control phone consumption, and i want to make a notification system that notifies employers automatically when they reach a consumption rate.the employers are not included in the auth_user, and all notifications modules i…
assemjhine
  • 25
  • 5
1
vote
2 answers

django-notifications: how NOTIFICATIONS_SOFT_DELETE=True works?

I want a notification system for my app, so I was looking into a django package called django-notifications. I understood all of it but NOTIFICATION_SOFT_DELETE=True settings. I mean when I do the following: from notifications import…
chaitanya90
  • 697
  • 2
  • 8
  • 24