website/hub/services/urls.py

21 lines
1 KiB
Python
Raw Normal View History

2025-01-27 14:58:23 +01:00
from django.urls import path
from . import views
app_name = "services"
urlpatterns = [
2025-01-31 09:59:37 +01:00
path("", views.homepage, name="homepage"),
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-31 09:59:37 +01:00
path("service/", views.service_list, name="service_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-02-27 15:44:55 +01:00
path("contact/", views.leads.contact, name="contact"),
path("contact/thank-you/", views.leads.contact_thank_you, name="contact_thank_you"),
2025-01-27 14:58:23 +01:00
]