diff options
| author | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2023-12-19 12:46:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-19 12:46:47 +0100 |
| commit | 16787c80e2acdbfb32b5b9711e95715ed9cca222 (patch) | |
| tree | 7068540f11bb45c43ccf32b2166fda645cf3de4c /fundraising | |
| parent | 4fe3201315d6fc5d29e47f4dd9002661272cc1f6 (diff) | |
Upgraded django-recaptcha to 4.0.0.
Diffstat (limited to 'fundraising')
| -rw-r--r-- | fundraising/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fundraising/forms.py b/fundraising/forms.py index 915f1059..e757d432 100644 --- a/fundraising/forms.py +++ b/fundraising/forms.py @@ -1,8 +1,8 @@ import stripe -from captcha.fields import ReCaptchaField -from captcha.widgets import ReCaptchaV3 from django import forms from django.utils.safestring import mark_safe +from django_recaptcha.fields import ReCaptchaField +from django_recaptcha.widgets import ReCaptchaV3 from .models import INTERVAL_CHOICES, LEADERSHIP_LEVEL_AMOUNT, DjangoHero, Donation |
