mirror of https://gitlab.crans.org/bde/nk20
76 lines
2.1 KiB
Python
76 lines
2.1 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.utils.translation import ugettext_lazy as _
|
|
from note_kfet.inputs import AmountInput, DatePickerInput, Autocomplete
|
|
|
|
from .models import WEIClub, WEIRegistration, Bus
|
|
|
|
|
|
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):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.fields["payment_method"].empty_label = _("No credit, directly pay with note balance")
|
|
|
|
class Meta:
|
|
model = WEIRegistration
|
|
exclude = ('wei', 'information_json', )
|
|
widgets = {
|
|
"user": Autocomplete(
|
|
User,
|
|
attrs={
|
|
'api_url': '/api/user/',
|
|
'name_field': 'username',
|
|
'placeholder': 'Nom ...',
|
|
},
|
|
),
|
|
"birth_date": DatePickerInput(),
|
|
}
|
|
|
|
|
|
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 = Bus
|
|
fields = '__all__'
|
|
widgets = {
|
|
"bus": Autocomplete(
|
|
Bus,
|
|
attrs={
|
|
'api_url': '/api/wei/bus/',
|
|
'placeholder': 'Bus ...',
|
|
},
|
|
),
|
|
}
|