From b2fc598c27d5a83625f9f54fdba9cec84d9f9800 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sun, 11 Jul 2021 02:28:44 +0200 Subject: [PATCH] elaborate captcha helptext with a hint due to popular demand --- src/bornhack/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bornhack/forms.py b/src/bornhack/forms.py index 9aa8b81b..0b8d2e4a 100644 --- a/src/bornhack/forms.py +++ b/src/bornhack/forms.py @@ -5,7 +5,7 @@ from django.core.exceptions import ValidationError class AllAuthSignupCaptchaForm(forms.Form): first_bornhack_year = forms.CharField( initial="", - help_text="Please help us prevent a few bot signups by telling us the year of the first BornHack.", + help_text="Please help us prevent a few bot signups by telling us the year of the first BornHack. You can find a list of all BornHack events in the camp list.", ) def clean_first_bornhack_year(self):