Display service catalogs #22

Merged
rixx merged 17 commits from 13-service-catalog into main 2025-03-25 11:18:20 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 51dcc46f62 - Show all commits

View file

@ -36,7 +36,7 @@
</div>
<div class="card-footer d-flex justify-content-between">
<span></span>
<a href="{{ service.pk }}/" class="btn btn-light-primary">{% translate "Read More" %}</a>
<a href="{{ service.slug }}/" class="btn btn-light-primary">{% translate "Read More" %}</a>
</div>
</div>
{% empty %}

View file

@ -26,7 +26,7 @@ urlpatterns = [
name="organization.services",
),
path(
"services/<int:pk>/",
"services/<slug:slug>/",
views.ServiceDetailView.as_view(),
name="organization.services",
),