diff options
-rw-r--r-- | pytask/profile/templatetags/user_tags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pytask/profile/templatetags/user_tags.py b/pytask/profile/templatetags/user_tags.py index e03aa09..6c09c53 100644 --- a/pytask/profile/templatetags/user_tags.py +++ b/pytask/profile/templatetags/user_tags.py @@ -8,5 +8,5 @@ def notf_dsp(user): 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' |