Klaus-Uwe Mitterer
f6b7fab525
Modifying inquiry model and creating offer model Creating client profile views Fixing stars and hearts template tags
10 lines
No EOL
272 B
Python
10 lines
No EOL
272 B
Python
from django.urls import path
|
|
|
|
from .views import ClientRegistrationView, ClientProfileView
|
|
|
|
app_name = "clients"
|
|
|
|
urlpatterns = [
|
|
path('register/', ClientRegistrationView.as_view(), name="register"),
|
|
path('profile/', ClientProfileView.as_view(), name="profile"),
|
|
] |