From 131bb2c0f1a4ba579e59b36fc38aec0c3c791b4e Mon Sep 17 00:00:00 2001 From: Ben Adida <ben@adida.net> Date: Sat, 18 Jan 2014 19:02:41 -0800 Subject: [PATCH] prepared the randomize_answer_order field for election creation/editing --- helios/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helios/forms.py b/helios/forms.py index 2583058..c1ccea3 100644 --- a/helios/forms.py +++ b/helios/forms.py @@ -14,7 +14,7 @@ class ElectionForm(forms.Form): election_type = forms.ChoiceField(label="type", choices = Election.ELECTION_TYPES) use_voter_aliases = forms.BooleanField(required=False, initial=False, help_text='If selected, voter identities will be replaced with aliases, e.g. "V12", in the ballot tracking center') #use_advanced_audit_features = forms.BooleanField(required=False, initial=True, help_text='disable this only if you want a simple election with reduced security but a simpler user interface') - #private_p = forms.BooleanField(required=False, initial=False, label="Private?", help_text='a private election is only visible to registered/eligible voters', widget=forms.HiddenInput) + #randomize_answer_order = forms.BooleanField(required=False, initial=False, help_text='enable this if you want the answers to questions to appear in random order for each voter') private_p = forms.BooleanField(required=False, initial=False, label="Private?", help_text='A private election is only visible to registered voters.') help_email = forms.CharField(required=False, initial="", label="Help Email Address", help_text='An email address voters should contact if they need help.') -- GitLab