From: Magnus Hagander Date: Mon, 26 May 2025 14:25:07 +0000 (+0200) Subject: Include link to waitlist management in admin notification X-Git-Url: http://git.postgresql.org/gitweb/delmail?a=commitdiff_plain;h=b9d9a5f897c7e09acf645810d69dcc1af59a7ebd;p=pgeu-system.git Include link to waitlist management in admin notification Fixes #183 --- diff --git a/postgresqleu/confreg/views.py b/postgresqleu/confreg/views.py index 19c96f1b..2f0ab94a 100644 --- a/postgresqleu/confreg/views.py +++ b/postgresqleu/confreg/views.py @@ -2431,7 +2431,12 @@ def waitlist_signup(request, confname): send_conference_notification( conference, 'Waitlist signup', - 'User {0} {1} <{2}> signed up for the waitlist.'.format(reg.firstname, reg.lastname, reg.email), + "User {0} {1} <{2}> signed up for the waitlist.\n\nWaitlist admin: {}".format( + reg.firstname, + reg.lastname, + reg.email, + '/events/admin/{}/waitlist/'.format(confname), + ), ) # Once on the waitlist, redirect back to the registration form page