mirror of https://gitlab.crans.org/bde/nk20
125 lines
3.7 KiB
Python
125 lines
3.7 KiB
Python
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from django import forms
|
|
from django.contrib.auth.models import User
|
|
from django.db.models import Q
|
|
from django.utils.translation import gettext_lazy as _
|
|
from note_kfet.inputs import AmountInput, DatePickerInput, Autocomplete, ColorWidget
|
|
|
|
from ..models import WEIClub, WEIRegistration, Bus, BusTeam, WEIMembership, WEIRole
|
|
|
|
|
|
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(),
|
|
}
|
|
|
|
|
|
class WEIRegistrationForm(forms.ModelForm):
|
|
class Meta:
|
|
model = WEIRegistration
|
|
exclude = ('wei', )
|
|
widgets = {
|
|
"user": Autocomplete(
|
|
User,
|
|
attrs={
|
|
'api_url': '/api/user/',
|
|
'name_field': 'username',
|
|
'placeholder': 'Nom ...',
|
|
},
|
|
),
|
|
"birth_date": DatePickerInput(),
|
|
}
|
|
|
|
|
|
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."),
|
|
)
|
|
|
|
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)"),
|
|
)
|
|
|
|
roles = forms.ModelMultipleChoiceField(
|
|
queryset=WEIRole.objects.filter(~Q(name="1A")),
|
|
label=_("WEI Roles"),
|
|
help_text=_("Select the roles that you are interested in."),
|
|
)
|
|
|
|
|
|
class WEIMembershipForm(forms.ModelForm):
|
|
roles = forms.ModelMultipleChoiceField(queryset=WEIRole.objects, label=_("WEI Roles"))
|
|
|
|
def clean(self):
|
|
cleaned_data = super().clean()
|
|
if cleaned_data["team"] is not None and cleaned_data["team"].bus != cleaned_data["bus"]:
|
|
self.add_error('bus', _("This team doesn't belong to the given bus."))
|
|
return cleaned_data
|
|
|
|
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 ...',
|
|
}
|
|
),
|
|
}
|
|
|
|
|
|
class BusForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Bus
|
|
fields = '__all__'
|
|
widgets = {
|
|
"wei": Autocomplete(
|
|
WEIClub,
|
|
attrs={
|
|
'api_url': '/api/wei/club/',
|
|
'placeholder': 'WEI ...',
|
|
},
|
|
),
|
|
}
|
|
|
|
|
|
class BusTeamForm(forms.ModelForm):
|
|
class Meta:
|
|
model = BusTeam
|
|
fields = '__all__'
|
|
widgets = {
|
|
"bus": Autocomplete(
|
|
Bus,
|
|
attrs={
|
|
'api_url': '/api/wei/bus/',
|
|
'placeholder': 'Bus ...',
|
|
},
|
|
),
|
|
"color": ColorWidget(),
|
|
}
|