You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
533 B
13 lines
533 B
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.home, name="home"),
|
|
path('register/', views.register, name='register'),
|
|
path('activate/<str:uidb64>/<str:token>/', views.activate_account, name='activate_account'),
|
|
path('login/', views.user_login, name='login'),
|
|
path('logout/', views.user_logout, name='logout'),
|
|
path('hire/', views.hire_view, name='hire'),
|
|
path('services/',views.services,name='services'),
|
|
path('profiles/<pk>',views.profie_View, name="profiles")
|
|
] |