46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
from django.contrib.auth.forms import UserCreationForm
|
|
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from member.models import TFJMUser
|
|
|
|
|
|
class SignUpForm(UserCreationForm):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.fields["first_name"].required = True
|
|
self.fields["last_name"].required = True
|
|
self.fields["role"].choices = [
|
|
('', _("Choose a role...")),
|
|
('participant', _("Participant")),
|
|
('encadrant', _("Encadrant")),
|
|
]
|
|
|
|
class Meta:
|
|
model = TFJMUser
|
|
fields = (
|
|
'role',
|
|
'email',
|
|
'first_name',
|
|
'last_name',
|
|
'birth_date',
|
|
'gender',
|
|
'address',
|
|
'postal_code',
|
|
'city',
|
|
'country',
|
|
'phone_number',
|
|
'school',
|
|
'student_class',
|
|
'responsible_name',
|
|
'responsible_phone',
|
|
'responsible_email',
|
|
'description',
|
|
)
|
|
|
|
|
|
class TFJMUserForm(forms.ModelForm):
|
|
class Meta:
|
|
model = TFJMUser
|
|
fields = '__all__'
|