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

@ -163,3 +163,21 @@ def search(request):
return render(
request, "froide_govplan/plugins/card_cols.html", {"object_list": plans}
)
def about(request):
return render(request, "froide_govplan/about.html")
def impress(request):
return render(request, "froide_govplan/impress.html")
def privacy(request):
return render(request, "froide_govplan/privacy.html")
def contact(request):
return render(request, "froide_govplan/contact.html")
def team(request):
return render(request, "froide_govplan/team.html")
def support(request):
return render(request, "froide_govplan/support.html")