# HG changeset patch # User Madhusudan.C.S # Date 1295106776 -19800 # Node ID 0bf7c07ef9226236b465f71bd6897ffe0cdf4fda # Parent df241055a1a76344bd9fc6f3354b9b3c4db17fe4 Capitalize the name Notifications. diff -r df241055a1a7 -r 0bf7c07ef922 pytask/profile/templatetags/user_tags.py --- a/pytask/profile/templatetags/user_tags.py Sat Jan 15 21:22:35 2011 +0530 +++ b/pytask/profile/templatetags/user_tags.py Sat Jan 15 21:22:56 2011 +0530 @@ -8,5 +8,5 @@ notf_cnt = user.notification_sent_to.filter(is_deleted=False, is_read=False).count() - return u'notifications(%s)'%notf_cnt if notf_cnt else u'notifications' + return u'Notifications(%s)'%notf_cnt if notf_cnt else u'Notifications'