# HG changeset patch # User nishanth # Date 1267704891 -19800 # Node ID a3ff1b63b4befa3aac312d227b3bf15ee8da9a03 # Parent c429873d8ac860cca7669522a3d875f71ebac3e5# Parent 8cedb0eb175d460bd091d7a62e51341e11c42508 merged with my local repo. diff -r 8cedb0eb175d -r a3ff1b63b4be taskapp/utilities/notification.py --- a/taskapp/utilities/notification.py Thu Mar 04 17:30:08 2010 +0530 +++ b/taskapp/utilities/notification.py Thu Mar 04 17:44:51 2010 +0530 @@ -229,10 +229,11 @@ notification.remarks = remarks claimed_by_url = '%s'%(sent_from.id, sent_from.username) + claim_url = 'claim'%(task.id) task_url = '%s'%(task.id, task.title) notification.sub = 'New claim for the task "%s"'%(task.title[:20]) - notification.message = '%s has submitted a claim for the task "%s" mentored by you.
'%(claimed_by_url, task_url) + notification.message = '%s has submitted a %s for the task "%s" mentored by you.
'%(claimed_by_url, claim_url, task_url) notification.message += 'Claim proposal: %s'%(remarks)