114 lines
3.3 KiB
Python
114 lines
3.3 KiB
Python
from django import forms
|
|
from django.forms.models import inlineformset_factory
|
|
from django.utils import timezone
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .models import Election, Option, Question
|
|
from .utils import check_csv
|
|
|
|
|
|
class ElectionForm(forms.ModelForm):
|
|
def clean(self):
|
|
cleaned_data = super().clean()
|
|
if cleaned_data["start_date"] < timezone.now():
|
|
self.add_error(
|
|
"start_date", _("Impossible de faire débuter l'élection dans le passé")
|
|
)
|
|
elif cleaned_data["start_date"] >= cleaned_data["end_date"]:
|
|
self.add_error(
|
|
"end_date", _("Impossible de terminer l'élection avant de la commencer")
|
|
)
|
|
return cleaned_data
|
|
|
|
class Meta:
|
|
model = Election
|
|
fields = ["name", "description", "restricted", "start_date", "end_date"]
|
|
|
|
|
|
class UploadVotersForm(forms.Form):
|
|
csv_file = forms.FileField(label=_("Sélectionnez un fichier .csv"))
|
|
|
|
def clean_csv_file(self):
|
|
csv_file = self.cleaned_data["csv_file"]
|
|
if csv_file.name.lower().endswith(".csv"):
|
|
for error in check_csv(csv_file):
|
|
self.add_error(None, error)
|
|
else:
|
|
self.add_error(
|
|
None,
|
|
_("Extension de fichier invalide, il faut un fichier au format CSV."),
|
|
)
|
|
csv_file.seek(0)
|
|
return csv_file
|
|
|
|
|
|
class VoterMailForm(forms.Form):
|
|
objet = forms.CharField()
|
|
message = forms.CharField(widget=forms.Textarea)
|
|
|
|
|
|
class QuestionForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Question
|
|
fields = ["text", "type"]
|
|
widgets = {"text": forms.TextInput}
|
|
|
|
|
|
class OptionForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Option
|
|
fields = ["text"]
|
|
widgets = {"text": forms.TextInput}
|
|
|
|
|
|
class DeleteVoteForm(forms.Form):
|
|
def __init__(self, **kwargs):
|
|
voter = kwargs.pop("voter")
|
|
super().__init__(**kwargs)
|
|
self.fields["delete"].label = _("Supprimer le vote de {} ({}) ?").format(
|
|
voter.full_name, voter.get_username()
|
|
)
|
|
|
|
delete = forms.ChoiceField(choices=(("non", _("Non")), ("oui", _("Oui"))))
|
|
|
|
|
|
class SelectVoteForm(forms.ModelForm):
|
|
def __init__(self, **kwargs):
|
|
super().__init__(**kwargs)
|
|
# We set the option's text as the label for the checkbox
|
|
instance = kwargs.get("instance", None)
|
|
if instance is not None:
|
|
self.fields["selected"].label = instance.text
|
|
|
|
selected = forms.BooleanField(required=False)
|
|
|
|
class Meta:
|
|
model = Option
|
|
fields = []
|
|
exclude = ["voters"]
|
|
|
|
|
|
class RankVoteForm(forms.ModelForm):
|
|
def __init__(self, **kwargs):
|
|
super().__init__(**kwargs)
|
|
# We set the option's text as the label for the rank
|
|
instance = kwargs.get("instance", None)
|
|
if instance is not None:
|
|
self.fields["rank"].label = instance.text
|
|
|
|
rank = forms.IntegerField(required=False)
|
|
|
|
class Meta:
|
|
model = Option
|
|
fields = []
|
|
exclude = ["voters"]
|
|
|
|
|
|
class BallotFormset:
|
|
select = inlineformset_factory(
|
|
Question, Option, extra=0, form=SelectVoteForm, can_delete=False
|
|
)
|
|
|
|
rank = inlineformset_factory(
|
|
Question, Option, extra=0, form=RankVoteForm, can_delete=False
|
|
)
|