From 16e9e8d8a089874df943d05cb4c0eba95348a15e Mon Sep 17 00:00:00 2001 From: Stephane Glondu Date: Wed, 21 Oct 2020 08:06:39 +0200 Subject: [PATCH] Add a warning about duplicate identities in voter edition --- src/web/pages_admin.ml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/web/pages_admin.ml b/src/web/pages_admin.ml index 1fbb128..8e4f10f 100644 --- a/src/web/pages_admin.ml +++ b/src/web/pages_admin.ml @@ -1306,6 +1306,10 @@ let election_draft_voters uuid se maxvoters () = b [txt (s_ "Warning:")]; txt " "; txt (s_ "you have to make sure that these email addresses are valid. You won't be able to change the email addresses once the election is set up. Voters with invalid email addresses won't be able to vote."); + br (); + b [txt (s_ "Warning:")]; + txt " "; + txt (s_ "Duplicate identities are not allowed and are automatically merged. If two voters have the same email address, use different logins."); ]; form; div [ -- GitLab