1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

Handle payments from the Société Générale, closes #15

This commit is contained in:
Yohann D'ANELLO
2020-04-05 15:31:39 +02:00
parent 3516b1fa04
commit f286f99ced
5 changed files with 152 additions and 71 deletions

View File

@ -25,6 +25,12 @@ class SignUpForm(UserCreationForm):
class ValidationForm(forms.Form):
soge = forms.BooleanField(
label=_("Inscription paid by Société Générale"),
required=False,
help_text=_("Check this case is the Société Générale paid the inscription."),
)
credit_type = forms.ModelChoiceField(
queryset=NoteSpecial.objects,
label=_("Credit type"),
@ -55,13 +61,13 @@ class ValidationForm(forms.Form):
)
join_BDE = forms.BooleanField(
label=_("Join BDE"),
label=_("Join BDE Club"),
required=False,
initial=True,
)
join_Kfet = forms.BooleanField(
label=_("Join Kfet"),
label=_("Join Kfet Club"),
required=False,
initial=True,
)