mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-02-24 09:01:18 +00:00
Compare commits
No commits in common. "258361f1166003c2f6324e571558de726806d563" and "40c239e9dabd3df2e6c586ed77d6c0e06903e3ba" have entirely different histories.
258361f116
...
40c239e9da
@ -5,7 +5,7 @@ from django import forms
|
|||||||
from django.contrib.auth.forms import UserCreationForm
|
from django.contrib.auth.forms import UserCreationForm
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
# from member.models import Club
|
from member.models import Club
|
||||||
from note.models import NoteSpecial, Alias
|
from note.models import NoteSpecial, Alias
|
||||||
from note_kfet.inputs import AmountInput
|
from note_kfet.inputs import AmountInput
|
||||||
|
|
||||||
@ -115,12 +115,13 @@ class ValidationForm(forms.Form):
|
|||||||
required=False,
|
required=False,
|
||||||
initial=True,
|
initial=True,
|
||||||
)
|
)
|
||||||
|
'''
|
||||||
# If the bda exists
|
# If the bda exists
|
||||||
# if Club.objects.filter(name__iexact="bda").exists():
|
if Club.objects.filter(name__iexact="bda").exists():
|
||||||
# The user can join the bda club at the inscription
|
# The user can join the bda club at the inscription
|
||||||
# join_bda = forms.BooleanField(
|
join_bda = forms.BooleanField(
|
||||||
# label=_("Join BDA Club"),
|
label=_("Join BDA Club"),
|
||||||
# required=False,
|
required=False,
|
||||||
# initial=True,
|
initial=True,
|
||||||
# )
|
)
|
||||||
|
'''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user