csp detail page

This commit is contained in:
Tobias Brunner 2025-01-27 15:54:37 +01:00
parent eb7485e345
commit 600eee2b4c
No known key found for this signature in database
15 changed files with 159 additions and 7 deletions

View file

@ -6,4 +6,5 @@ app_name = "services"
urlpatterns = [
path("", views.service_list, name="service_list"),
path("service/<int:pk>/", views.service_detail, name="service_detail"),
path("provider/<slug:slug>/", views.provider_detail, name="provider_detail"),
]