blob: 76291977b2e3c2ae85005bf5d06c9cc91d6afe3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from django.urls import reverse
from django_contact_form.views import ContactFormView
from .forms import FoundationContactForm
class ContactFoundation(ContactFormView):
form_class = FoundationContactForm
template_name = "contact/foundation.html"
def get_success_url(self):
return reverse("contact_form_sent")
|