2021-03-24 06:43:05 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
2021-04-12 13:32:15 +00:00
|
|
|
from .views import ClientRegistrationView, ClientProfileView, ClientDashboardView, ClientBookingsView
|
2021-03-24 06:43:05 +00:00
|
|
|
|
|
|
|
app_name = "clients"
|
|
|
|
|
|
|
|
urlpatterns = [
|
2021-04-12 12:39:18 +00:00
|
|
|
path('dashboard/', ClientDashboardView.as_view(), name="dashboard"),
|
2021-03-24 06:43:05 +00:00
|
|
|
path('register/', ClientRegistrationView.as_view(), name="register"),
|
|
|
|
path('profile/', ClientProfileView.as_view(), name="profile"),
|
2021-04-12 13:32:15 +00:00
|
|
|
path('bookings/', ClientBookingsView.as_view(), name="bookings"),
|
2021-03-24 06:43:05 +00:00
|
|
|
]
|