Add missing label/helptext

This commit is contained in:
Sebastian Lohff 2019-01-24 23:26:31 +01:00
parent 952f0aa546
commit b0316dc797
1 changed files with 3 additions and 1 deletions

View File

@ -70,7 +70,9 @@ class User(AbstractUser):
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,
verbose_name="Additional 2m/70cm TRX",
help_text="Will you bring an additional 2m/70cm TRX to lend to other participants?")
def __init__(self, *args, **kwargs):
super(User, self).__init__(*args, **kwargs)