2025-01-27 14:58:23 +01:00
|
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
app_name = "services"
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path("", views.service_list, name="service_list"),
|
2025-01-28 13:55:43 +01:00
|
|
|
path("offerings/", views.offering_list, name="offering_list"),
|
|
|
|
path("providers/", views.provider_list, name="provider_list"),
|
|
|
|
path("partners/", views.partner_list, name="partner_list"),
|
2025-01-27 17:00:56 +01:00
|
|
|
path("service/<slug:slug>/", views.service_detail, name="service_detail"),
|
2025-01-28 13:55:43 +01:00
|
|
|
path("offering/<slug:slug>/", views.offering_detail, name="offering_detail"),
|
2025-01-30 09:49:27 +01:00
|
|
|
path("provider/<slug:slug>/", views.provider_detail, name="provider_detail"),
|
2025-01-28 13:55:43 +01:00
|
|
|
path("partner/<slug:slug>/", views.partner_detail, name="partner_detail"),
|
2025-01-27 17:00:56 +01:00
|
|
|
path("service/<slug:slug>/interest/", views.create_lead, name="create_lead"),
|
|
|
|
path("service/<slug:slug>/thank-you/", views.thank_you, name="thank_you"),
|
2025-01-27 14:58:23 +01:00
|
|
|
]
|