JourneyJoker/clients/urls.py
Klaus-Uwe Mitterer f6b7fab525 Creating custom admin model
Modifying inquiry model and creating offer model
Creating client profile views
Fixing stars and hearts template tags
2021-03-24 07:43:05 +01:00

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"),
]