diff options
| author | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2023-12-14 12:28:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-14 12:28:13 +0100 |
| commit | 2b7c3bb6d50a3f8b287593104a8e664f4d234378 (patch) | |
| tree | 761238604a610917666c0672601469f15c1664e3 /fundraising | |
| parent | da1230a405c04f9a2a1e8e3f1503c176a379cabf (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 |
