8 lines
166 B
Python
8 lines
166 B
Python
from django.urls import path
|
|
|
|
from contact.views import ContactCreate
|
|
|
|
urlpatterns = [
|
|
path('contact/create/', ContactCreate.as_view(), name='contact.create'),
|
|
]
|