diff --git a/contest/models.py b/contest/models.py index a324208..2e8eb6f 100644 --- a/contest/models.py +++ b/contest/models.py @@ -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)