Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded django-contact-form to 2.1. #1438

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contact/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import django
from captcha.fields import ReCaptchaField
from captcha.widgets import ReCaptchaV3
from contact_form.forms import ContactForm
from django import forms
from django.conf import settings
from django.contrib.sites.models import Site
from django.utils.encoding import force_bytes
from django_contact_form.forms import ContactForm
from pykismet3 import Akismet, AkismetServerError

logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion contact/views.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from contact_form.views import ContactFormView
from django.urls import reverse
from django_contact_form.views import ContactFormView

from .forms import FoundationContactForm

Expand Down
2 changes: 1 addition & 1 deletion requirements/common.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Babel==2.10.1
django-contact-form==1.9
django-contact-form==2.1
django-countries==7.5.1
django-hosts==5.1
django-money==2.1.1
Expand Down
Loading