Add extra fields to registration
This commit is contained in:
parent
8cc6c3cbff
commit
952f0aa546
|
@ -12,7 +12,7 @@ from .validators import CallUsernameValidator, CallLogValidator
|
||||||
class CustomUserCreationForm(UserCreationForm):
|
class CustomUserCreationForm(UserCreationForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = User
|
model = User
|
||||||
fields = ("username",)
|
fields = ("username", "dncall", "qrv2m", "qrv70cm", "extra2m70cm")
|
||||||
|
|
||||||
username = forms.CharField(max_length=50, validators=[CallUsernameValidator()])
|
username = forms.CharField(max_length=50, validators=[CallUsernameValidator()])
|
||||||
|
|
||||||
|
|
|
@ -61,9 +61,15 @@ class User(AbstractUser):
|
||||||
|
|
||||||
# extra profile stuff so DL7BST can sleep well without his doodles
|
# extra profile stuff so DL7BST can sleep well without his doodles
|
||||||
editedProfile = models.BooleanField(default=False)
|
editedProfile = models.BooleanField(default=False)
|
||||||
dncall = models.CharField(max_length=16, default='', blank=True)
|
dncall = models.CharField(max_length=16, default='', blank=True,
|
||||||
qrv2m = models.BooleanField(default=False)
|
verbose_name="DN-Call",
|
||||||
qrv70cm = models.BooleanField(default=False)
|
help_text="If you have a DN call that you will offer to SWLs please enter it here")
|
||||||
|
qrv2m = models.BooleanField(default=False,
|
||||||
|
verbose_name="QRV on 2m",
|
||||||
|
help_text="Will you be QRV on 2m during the contest?")
|
||||||
|
qrv70cm = models.BooleanField(default=False,
|
||||||
|
verbose_name="QRV on 70cm",
|
||||||
|
help_text="Will you be QRV on 70cm during the contest?")
|
||||||
extra2m70cm = models.BooleanField(default=False)
|
extra2m70cm = models.BooleanField(default=False)
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|
Loading…
Reference in New Issue