changed __unicode__ method of notification model.
authornishanth
Thu, 04 Mar 2010 17:56:31 +0530
changeset 203 4774f6875a2d
parent 202 a3ff1b63b4be
child 204 fa1da06d25c9
changed __unicode__ method of notification model.
taskapp/models.py
--- a/taskapp/models.py	Thu Mar 04 17:44:51 2010 +0530
+++ b/taskapp/models.py	Thu Mar 04 17:56:31 2010 +0530
@@ -174,7 +174,7 @@
     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)