add subsites

This commit is contained in:
Jonas Heinrich 2025-05-08 11:48:40 +02:00
parent aa8d467b1a
commit eee8494001
12 changed files with 321 additions and 99 deletions

View file

@ -6,12 +6,24 @@ from .views import (
GovPlanProposeUpdateView,
GovPlanSectionDetailView,
search,
impress,
privacy,
contact,
about,
team,
support,
)
app_name = "govplan"
urlpatterns = [
path("search/", search, name="search"),
path("impress", impress, name="impress"),
path("privacy", privacy, name="privacy"),
path("contact", contact, name="contact"),
path("about", about, name="about"),
path("team", team, name="team"),
path("support", support, name="support"),
path(
pgettext_lazy("url part", "<slug:gov>/plan/<slug:plan>/"),
GovPlanDetailView.as_view(),