2020-04-12 00:30:48 +00:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
from django import forms
|
2020-04-12 01:31:08 +00:00
|
|
|
from django.contrib.auth.models import User
|
2020-04-20 22:07:00 +00:00
|
|
|
from django.db.models import Q
|
2020-08-03 11:33:25 +00:00
|
|
|
from django.forms import CheckboxSelectMultiple
|
2020-04-19 23:26:53 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2020-08-04 18:04:41 +00:00
|
|
|
from note.models import NoteSpecial
|
2020-04-13 04:01:27 +00:00
|
|
|
from note_kfet.inputs import AmountInput, DatePickerInput, Autocomplete, ColorWidget
|
2020-04-12 00:30:48 +00:00
|
|
|
|
2020-04-19 23:26:53 +00:00
|
|
|
from ..models import WEIClub, WEIRegistration, Bus, BusTeam, WEIMembership, WEIRole
|
2020-04-12 00:30:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class WEIForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = WEIClub
|
|
|
|
exclude = ('parent_club', 'require_memberships', 'membership_duration', )
|
|
|
|
widgets = {
|
|
|
|
"membership_fee_paid": AmountInput(),
|
|
|
|
"membership_fee_unpaid": AmountInput(),
|
|
|
|
"membership_start": DatePickerInput(),
|
|
|
|
"membership_end": DatePickerInput(),
|
|
|
|
"date_start": DatePickerInput(),
|
|
|
|
"date_end": DatePickerInput(),
|
|
|
|
}
|
2020-04-12 01:31:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class WEIRegistrationForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = WEIRegistration
|
2020-04-19 23:26:53 +00:00
|
|
|
exclude = ('wei', )
|
2020-04-12 01:31:08 +00:00
|
|
|
widgets = {
|
|
|
|
"user": Autocomplete(
|
|
|
|
User,
|
|
|
|
attrs={
|
|
|
|
'api_url': '/api/user/',
|
|
|
|
'name_field': 'username',
|
|
|
|
'placeholder': 'Nom ...',
|
|
|
|
},
|
|
|
|
),
|
2020-08-09 17:38:13 +00:00
|
|
|
"birth_date": DatePickerInput(options={'defaultDate': '2000-01-01',
|
|
|
|
'minDate': '1900-01-01',
|
2020-08-08 14:20:59 +00:00
|
|
|
'maxDate': '2100-01-01'}),
|
2020-04-12 01:31:08 +00:00
|
|
|
}
|
2020-04-13 03:02:16 +00:00
|
|
|
|
|
|
|
|
2020-04-20 22:07:00 +00:00
|
|
|
class WEIChooseBusForm(forms.Form):
|
|
|
|
bus = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=Bus.objects,
|
|
|
|
label=_("bus"),
|
|
|
|
help_text=_("This choice is not definitive. The WEI organizers are free to attribute for you a bus and a team,"
|
|
|
|
+ " in particular if you are a free eletron."),
|
2020-08-03 11:33:25 +00:00
|
|
|
widget=CheckboxSelectMultiple(),
|
2020-04-20 22:07:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
team = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=BusTeam.objects,
|
|
|
|
label=_("Team"),
|
|
|
|
required=False,
|
|
|
|
help_text=_("Leave this field empty if you won't be in a team (staff, bus chief, free electron)"),
|
2020-08-03 11:33:25 +00:00
|
|
|
widget=CheckboxSelectMultiple(),
|
2020-04-20 22:07:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
roles = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=WEIRole.objects.filter(~Q(name="1A")),
|
|
|
|
label=_("WEI Roles"),
|
|
|
|
help_text=_("Select the roles that you are interested in."),
|
2020-08-03 11:33:25 +00:00
|
|
|
initial=WEIRole.objects.filter(name="Adhérent WEI").all(),
|
|
|
|
widget=CheckboxSelectMultiple(),
|
2020-04-20 22:07:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-04-14 01:41:26 +00:00
|
|
|
class WEIMembershipForm(forms.ModelForm):
|
2020-08-03 11:33:25 +00:00
|
|
|
roles = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=WEIRole.objects,
|
|
|
|
label=_("WEI Roles"),
|
|
|
|
widget=CheckboxSelectMultiple(),
|
|
|
|
)
|
2020-04-14 01:41:26 +00:00
|
|
|
|
2020-08-04 18:04:41 +00:00
|
|
|
credit_type = forms.ModelChoiceField(
|
|
|
|
queryset=NoteSpecial.objects.all(),
|
|
|
|
label=_("Credit type"),
|
|
|
|
empty_label=_("No credit"),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
credit_amount = forms.IntegerField(
|
|
|
|
label=_("Credit amount"),
|
|
|
|
widget=AmountInput(),
|
|
|
|
initial=0,
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
last_name = forms.CharField(
|
|
|
|
label=_("Last name"),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
first_name = forms.CharField(
|
|
|
|
label=_("First name"),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
bank = forms.CharField(
|
|
|
|
label=_("Bank"),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
2020-04-19 23:26:53 +00:00
|
|
|
def clean(self):
|
|
|
|
cleaned_data = super().clean()
|
|
|
|
if cleaned_data["team"] is not None and cleaned_data["team"].bus != cleaned_data["bus"]:
|
2020-04-20 22:07:00 +00:00
|
|
|
self.add_error('bus', _("This team doesn't belong to the given bus."))
|
2020-04-19 23:26:53 +00:00
|
|
|
return cleaned_data
|
|
|
|
|
2020-04-14 01:41:26 +00:00
|
|
|
class Meta:
|
|
|
|
model = WEIMembership
|
|
|
|
fields = ('roles', 'bus', 'team',)
|
|
|
|
widgets = {
|
|
|
|
"bus": Autocomplete(
|
|
|
|
Bus,
|
|
|
|
attrs={
|
|
|
|
'api_url': '/api/wei/bus/',
|
|
|
|
'placeholder': 'Bus ...',
|
|
|
|
}
|
|
|
|
),
|
|
|
|
"team": Autocomplete(
|
|
|
|
BusTeam,
|
|
|
|
attrs={
|
|
|
|
'api_url': '/api/wei/team/',
|
|
|
|
'placeholder': 'Équipe ...',
|
2020-08-10 18:09:49 +00:00
|
|
|
},
|
|
|
|
resetable=True,
|
2020-04-14 01:41:26 +00:00
|
|
|
),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-13 03:02:16 +00:00
|
|
|
class BusForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Bus
|
2020-07-25 16:18:53 +00:00
|
|
|
exclude = ('information_json',)
|
2020-04-13 03:02:16 +00:00
|
|
|
widgets = {
|
|
|
|
"wei": Autocomplete(
|
|
|
|
WEIClub,
|
|
|
|
attrs={
|
|
|
|
'api_url': '/api/wei/club/',
|
|
|
|
'placeholder': 'WEI ...',
|
|
|
|
},
|
|
|
|
),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class BusTeamForm(forms.ModelForm):
|
|
|
|
class Meta:
|
2020-04-13 04:01:27 +00:00
|
|
|
model = BusTeam
|
2020-04-13 03:02:16 +00:00
|
|
|
fields = '__all__'
|
|
|
|
widgets = {
|
|
|
|
"bus": Autocomplete(
|
|
|
|
Bus,
|
|
|
|
attrs={
|
|
|
|
'api_url': '/api/wei/bus/',
|
|
|
|
'placeholder': 'Bus ...',
|
|
|
|
},
|
|
|
|
),
|
2020-04-13 04:01:27 +00:00
|
|
|
"color": ColorWidget(),
|
2020-04-13 03:02:16 +00:00
|
|
|
}
|