JourneyJoker/clients/urls.py

10 lines
272 B
Python
Raw Normal View History

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