12345678910111213 |
- from django.urls import path
- from .views import index, login, services, search, profile
- urlpatterns = [
- path('', index, name = 'index'),
- path('login/', login, name = 'login'),
- path('services/', services, name = 'services'),
- path('search/', search, name = 'search'),
- path('profile/', profile, name = 'profile'),
- path('register/', profile, name = 'register'),
- path('logout/', profile, name = 'logout'),
- ]
|