diff options
author | nishanth | 2010-03-04 17:56:31 +0530 |
---|---|---|
committer | nishanth | 2010-03-04 17:56:31 +0530 |
commit | 6e665479f40b383725cf7979aebd79a1388808c1 (patch) | |
tree | 39dae09c24f28d9eff02b33b4a275e73fc87a5b4 /taskapp/models.py | |
parent | 8204bd7505012f6a7b40edcc6d68d5377b97bd49 (diff) | |
download | pytask-6e665479f40b383725cf7979aebd79a1388808c1.tar.gz pytask-6e665479f40b383725cf7979aebd79a1388808c1.tar.bz2 pytask-6e665479f40b383725cf7979aebd79a1388808c1.zip |
changed __unicode__ method of notification model.
Diffstat (limited to 'taskapp/models.py')
-rw-r--r-- | taskapp/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskapp/models.py b/taskapp/models.py index 8a9182a..2282967 100644 --- a/taskapp/models.py +++ b/taskapp/models.py @@ -174,7 +174,7 @@ class Notification(models.Model): is_deleted = models.BooleanField(default = False) def __unicode__(self): - return u"%s %s"%(self.sent_to, self.sent_date.ctime()) + return u"%s %s %s"%(self.sent_to, self.message, self.sent_date.ctime()) tagging.register(Profile) tagging.register(Task) |