10 lines
262 B
Python
10 lines
262 B
Python
|
from django.urls import path
|
||
|
|
||
|
from public.views import HomeView
|
||
|
|
||
|
app_name = "auction"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('create_inquiry/', HomeView.as_view(), name="create_inquiry"),
|
||
|
path('process_inquiry/<slug:uuid>/', HomeView.as_view(), name="process_inquiry"),
|
||
|
]
|