我浏览了许多博客和应用程序,大多数应用程序都使用 Django auth 用户集成通知功能,所以如果有任何方法或博客对它有帮助。
我面临的问题是我将我的用户模型定义为:
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)
而且我想将通知中心添加到现有模型中,那么最好的方法是什么。