From ca05462876a3ccca812ad212cffaecac19197535 Mon Sep 17 00:00:00 2001 From: Max Yakovenko Date: Sat, 21 Jul 2018 11:01:50 +0300 Subject: [PATCH] comment out captcha --- accounts_ext/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/accounts_ext/forms.py b/accounts_ext/forms.py index 00dc3f7..d47661e 100644 --- a/accounts_ext/forms.py +++ b/accounts_ext/forms.py @@ -49,7 +49,8 @@ class RegistrationForm(RegistrationFormUniqueEmail): widget=forms.TextInput(attrs={'class': 'reg__text'})) agreement = forms.BooleanField() - captcha = CaptchaField(required=not settings.DEBUG) + # captcha = CaptchaField(required=not settings.DEBUG) + captcha = CaptchaField(required=False) title = _('Регистрация')