From 4e7b62c51b958acad9d87b435571a22113a43d35 Mon Sep 17 00:00:00 2001 From: Wolfram Sang Date: Fri, 17 May 2013 12:23:05 +0200 Subject: notifications: add project name to patch update notification Based on a feature request & patch from Wolfram Sang . Notifications may span multiple projects, so include a summary in the subject line, and detail in the header. Signed-off-by: Jeremy Kerr --- apps/patchwork/utils.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps') diff --git a/apps/patchwork/utils.py b/apps/patchwork/utils.py index f48e7a5..f8fee3f 100644 --- a/apps/patchwork/utils.py +++ b/apps/patchwork/utils.py @@ -175,6 +175,7 @@ def send_notifications(): for (recipient, notifications) in groups: notifications = list(notifications) + projects = set([ n.patch.project.linkname for n in notifications ]) def delete_notifications(): PatchChangeNotification.objects.filter( @@ -188,7 +189,9 @@ def send_notifications(): 'site': Site.objects.get_current(), 'person': recipient, 'notifications': notifications, + 'projects': projects, } + subject = render_to_string( 'patchwork/patch-change-notification-subject.text', context).strip() -- cgit v1.2.3