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
1
vote
0 answers

Django notification giving error for other model

Following code is working for comment section. from django.db import models from django.contrib.sites.models import Site from django.db.models import signals from notification import models as notification def new_comment(sender, instance, created,…
user3048148
  • 195
  • 2
  • 11
1
vote
0 answers

Django-notification: accessing extra content

Using django-notification from https://github.com/pinax/django-notification, I'm trying to attach extra content to my notifcation like so: notification.send_now([b.person], "employee_access_request", …
ryan
  • 1,451
  • 11
  • 27
1
vote
2 answers

django-notification error: NoticeType matching query does not exist?

I'm trying to send email using django-notification. I have followed the documentation and created all the notice types, templates and management.py. However, when I attempt to send an email, I'm shown this debug page with the error: NoticeType…
Kenny
  • 117
  • 3
  • 13
1
vote
2 answers

django-notification: How many observed items

I have a queryset at the moment that returns the number items in a model ordered by the number of people watching it. So I have a m2m field representing this link. Ie: #models.py class MyModel(models.Model): ... watchers =…
powlo
  • 2,538
  • 3
  • 28
  • 38
0
votes
1 answer

django-avatar combined with django-notification gives an error

I have installed django-avatar and django-notification (django-avatar uses django-notification, if the latter is installed, in order to send necessary messages to user). However when I upload/change/delete my avatar I get this error: Request Method:…
xpanta
  • 8,124
  • 15
  • 60
  • 104
0
votes
1 answer

Environment Error when trying to use django-notification app

I am trying to install django-notification app[1] and I get an error when I give manage.py syncdb. The error states: EnvironmentError: NOTIFICATIONS was not found. I have installed django-notification using setup tools successfully. This is my stack…
xpanta
  • 8,124
  • 15
  • 60
  • 104
0
votes
0 answers

How to use django-notification to send an anonymous notification to a user

I've implemented a notification sending when the certain object is changed. notify.send(request.user, #UserA recipient=worker.profile.user, #UserB target=application, verb="Your object has been…
0
votes
1 answer

How to send notification before 30 days from expire date in django?

How do i schedule notification for this program? i am using channels to create notification and use "crontab" for scheduling but it doesn't work. def my_schedule_job(): vehicle_objs = Vehicle.objects.all() for vehicle_obj in vehicle_objs: …
0
votes
1 answer

How Notify Current user ,your insurance is going expiry within 5 days in django

I am stuck in one problem and i want to notify current logged user for it's insurance will be expired within 5 days ago. class Vehicle(models.Model): vehicle_no = models.CharField(max_length=100, blank=False, null=False) chasis_no =…
user16775421
0
votes
1 answer

Django notification observe model (watching for product results)

I've been using django-notification (https://github.com/jtauber/django-notification.git) but the documentation is a little brief for a beginner. I want to be able to have users keep a watch on searches (a results page with product listings) that…
null
  • 1,137
  • 2
  • 11
  • 29
0
votes
1 answer

Implementing notifications with Django Restframework

I have developed an api for mobile app which uses Django rest framework as backend. Now I want to create notification to user. Whenever new lesson is added by admin, logged in user will have a notification. Here is a lesson model class…
0
votes
1 answer

django notify user three month before expire date

I have a Django app that has an expiration date field where the user has to fill up when submitting the form. What I want to do next is to have a function that checks the expiration date and automatically sends an email notification to the user…
user11766958
  • 409
  • 3
  • 12
0
votes
1 answer

How to get notification on template using django signals?

I'm a beginner's level Django developer and I'm making a hospital system. In the hospital system, I want to add a notification system whenever any patient uploads a report against the doctor id I want to inform the doctor to the doctor notifications…
0
votes
1 answer

User notification on checkbox

I'm working on a Django project. It manages designers projects. Each project has a worker (who is working on the project) and a responsible (who assigns the project to a worker). The worker can modify some attributes of the project through an Update…
0
votes
0 answers

Sending out notifications like "n users liked your post" in django

I have created a Django application where users are able to post, comment, and like each other's activity. I am now implementing sending out notifications when one user comments on another user's post, and I am able to do that using…
EZbrute
  • 400
  • 2
  • 14