From 25e5a746f7e18db228e32d5e3f2d684360dc6414 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 15 May 2025 17:58:40 +0200 Subject: [PATCH] Add one more sentence about using third party digital signatures --- postgresqleu/confsponsor/views.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/postgresqleu/confsponsor/views.py b/postgresqleu/confsponsor/views.py index def4dbb6..09701e70 100644 --- a/postgresqleu/confsponsor/views.py +++ b/postgresqleu/confsponsor/views.py @@ -467,7 +467,10 @@ def sponsor_signup(request, confurlname, levelurlname): ) if conference.manualcontracts: contractchoices.append( - (1, 'Manual signing', 'Receive the contract as a PDF sent to {}, print it, sign it, scan it and send it back in to the conference organisers.'.format(request.user.email)), + (1, 'Manual signing', 'Receive the contract as a PDF sent to {}, print it, sign it, scan it and send it back in to the conference organisers.{}'.format( + request.user.email, + ' This option should also be used if you will use a different digital signature provider than the ones listed above. Please contact the organizers before doing this to confirm that this provider is accepted.' if conference.contractprovider else '', + )), ) return render(request, 'confsponsor/signupform.html', { -- 2.39.5