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 as:
class user_signup(models.Model):
full_name = models.CharField('Full Name',max_length=200)
user_email = models.EmailField('User Email', max_length=255)
user_password = models.CharField('Password', max_length=30)
date_time=models.DateTimeField(auto_now=True)
def __unicode__(self):
return smart_unicode(self.user_email)
And i want to add notification center to the existing model, so what could be the best way for it.
Donot know why anybody didn't answered
You can use one that i recently used , its django-notification module and below is the snippet Handler:-
generate an notification
Read refs:-
Ref1 and Ref2