website/hub/services/urls.py

26 lines
1.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-03-07 10:53:07 +01:00
path("about/", views.about, name="about"),
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-02-28 14:25:35 +01:00
path(
"offering/<slug:provider_slug>/<slug:service_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-02-27 15:44:55 +01:00
path("contact/", views.leads.contact, name="contact"),
2025-03-03 14:30:05 +01:00
path("contact/thank-you/", views.thank_you, name="thank_you"),
path("contact-form/", views.contact_form, name="contact_form"),
path("subscribe/", views.subscribe, name="subscribe"),
2025-01-27 14:58:23 +01:00
]