From 375fcbb2c74110b013370a5ba360a319ff9d3bf9 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sat, 14 Mar 2026 11:59:28 +0100 Subject: [PATCH] government plan: remove trailing slash from links --- froide_govplan/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/froide_govplan/urls.py b/froide_govplan/urls.py index c2655a9..de63191 100644 --- a/froide_govplan/urls.py +++ b/froide_govplan/urls.py @@ -29,11 +29,11 @@ urlpatterns = [ path( pgettext_lazy("url part", "/plan//"), GovPlanDetailView.as_view(), - name="plan", ), path( pgettext_lazy("url part", "/plan/"), GovPlanDetailView.as_view(), + name="plan", ), path( pgettext_lazy("url part", "/plan//propose-update/"), @@ -52,10 +52,10 @@ urlpatterns = [ path( pgettext_lazy("url part", "//"), GovPlanSectionDetailView.as_view(), - name="section", ), path( pgettext_lazy("url part", "/"), GovPlanSectionDetailView.as_view(), + name="section", ), ]