urls.py 433 B

12345678910111213
  1. from django.urls import path
  2. from .views import index, login, services, search, profile
  3. urlpatterns = [
  4. path('', index, name = 'index'),
  5. path('login/', login, name = 'login'),
  6. path('services/', services, name = 'services'),
  7. path('search/', search, name = 'search'),
  8. path('profile/', profile, name = 'profile'),
  9. path('register/', profile, name = 'register'),
  10. path('logout/', profile, name = 'logout'),
  11. ]