Update forms.py

This commit is contained in:
quark 2024-03-27 10:04:14 +01:00
parent f7ebe0e99b
commit 5de930bf40
1 changed files with 7 additions and 7 deletions

View File

@ -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
@ -117,10 +117,10 @@ class ValidationForm(forms.Form):
) )
# 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,
# ) # )