From 25eda198b47cae8b6f1756cc0fa3a0ea97c6203e Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Tue, 3 Dec 2024 16:27:46 +0100 Subject: [PATCH] Add explicit note about using our digial signature provider When selecting digital signatures for contracts, one must use our provider otherwise it won't work. If a sponsor requires the use of a separate system, they must choose manual contracts. So make this double-clear by adding another NOTE! to the selection. --- postgresqleu/confsponsor/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgresqleu/confsponsor/views.py b/postgresqleu/confsponsor/views.py index 4f7fa393..d802a444 100644 --- a/postgresqleu/confsponsor/views.py +++ b/postgresqleu/confsponsor/views.py @@ -429,7 +429,7 @@ def sponsor_signup(request, confurlname, levelurlname): if conference.contractprovider: providerimpl = conference.contractprovider.get_implementation() contractchoices.append( - (0, 'Digital signatures', "Digitally sign the contract using {}. {}
NOTE! The signing process has to complete within {} days or the signup will be automatically canceled.".format(conference.contractprovider.displayname, providerimpl.description_text(request.user.email), conference.contractexpires)), + (0, 'Digital signatures', "Digitally sign the contract using {}. {}
NOTE! The signing process has to complete within {} days or the signup will be automatically canceled.
NOTE! The digital signing must be done with the process integrated with our system. It can not be used with a different digital signature provider!".format(conference.contractprovider.displayname, providerimpl.description_text(request.user.email), conference.contractexpires)), ) if conference.manualcontracts: contractchoices.append( -- 2.39.5