Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
14 lines
347 B
Python
14 lines
347 B
Python
"""
|
|
URL patterns for the contact_form views.
|
|
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
from django.urls import re_path
|
|
|
|
from .views import ContactFormView, ContactSuccessView
|
|
|
|
urlpatterns = [
|
|
re_path(r"^$", ContactFormView.as_view(), name="contact_form"),
|
|
re_path(r"^success/$", ContactSuccessView.as_view(), name="contact_success"),
|
|
]
|