JourneyJoker/clients/urls.py

11 lines
No EOL
366 B
Python

from django.urls import path
from .views import ClientRegistrationView, ClientProfileView, ClientDashboardView
app_name = "clients"
urlpatterns = [
path('dashboard/', ClientDashboardView.as_view(), name="dashboard"),
path('register/', ClientRegistrationView.as_view(), name="register"),
path('profile/', ClientProfileView.as_view(), name="profile"),
]