You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
390 B
Python
10 lines
390 B
Python
from django.urls import path
|
|
from common import views
|
|
|
|
urlpatterns = [
|
|
path('', views.IndexView.as_view(), name='index'),
|
|
path('client/dashboard/', views.ClientDashboardView.as_view(), name='client_dashboard'),
|
|
path ('client/preinfo/', views.ClientPreinfoView.as_view(), name='client_preinfo'),
|
|
path('dashboard/', views.DashboardRedirectView.as_view(), name='dashboard'),
|
|
]
|