# HG changeset patch
# User nishanth
# Date 1267704827 -19800
# Node ID c429873d8ac860cca7669522a3d875f71ebac3e5
# Parent 946d0fe6060654bca858b94afcc472fedcb03d66
now there is a link to claim in new_claim notification.
diff -r 946d0fe60606 -r c429873d8ac8 taskapp/utilities/notification.py
--- a/taskapp/utilities/notification.py Thu Mar 04 17:29:00 2010 +0530
+++ b/taskapp/utilities/notification.py Thu Mar 04 17:43:47 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)