44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
from django.urls import path
|
|
from . import views
|
|
from .feeds import ArticleRSSFeed
|
|
|
|
app_name = "services"
|
|
|
|
urlpatterns = [
|
|
path("", views.homepage, name="homepage"),
|
|
path("about/", views.about, name="about"),
|
|
path("offerings/", views.offering_list, name="offering_list"),
|
|
path("providers/", views.provider_list, name="provider_list"),
|
|
path("partners/", views.partner_list, name="partner_list"),
|
|
path("service/", views.service_list, name="service_list"),
|
|
path("service/<slug:slug>/", views.service_detail, name="service_detail"),
|
|
path(
|
|
"offering/<slug:provider_slug>/<slug:service_slug>/",
|
|
views.offering_detail,
|
|
name="offering_detail",
|
|
),
|
|
path("provider/<slug:slug>/", views.provider_detail, name="provider_detail"),
|
|
path("partner/<slug:slug>/", views.partner_detail, name="partner_detail"),
|
|
path("articles/", views.article_list, name="article_list"),
|
|
path("articles/rss/", ArticleRSSFeed(), name="article_rss"),
|
|
path("article/<slug:slug>/", views.article_detail, name="article_detail"),
|
|
path("contact/", views.leads.contact, name="contact"),
|
|
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"),
|
|
path(
|
|
"pricelist/",
|
|
views.pricelist,
|
|
name="pricelist",
|
|
),
|
|
path(
|
|
"csp-roi-calculator/",
|
|
views.csp_roi_calculator,
|
|
name="csp_roi_calculator",
|
|
),
|
|
path(
|
|
"csp-roi-calculator/help/",
|
|
views.roi_calculator_help,
|
|
name="roi_calculator_help",
|
|
),
|
|
]
|