From b0316dc797b27b7327f241d00576d70794938b0c Mon Sep 17 00:00:00 2001 From: Sebastian Lohff Date: Thu, 24 Jan 2019 23:26:31 +0100 Subject: [PATCH] Add missing label/helptext --- contest/models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)