Initial commit

This commit is contained in:
Stefan Wehrmeyer 2022-02-15 21:09:09 +01:00
commit 19170142c3
20 changed files with 894 additions and 0 deletions

14
froide_govplan/urls.py Normal file
View file

@ -0,0 +1,14 @@
from django.urls import path
from django.utils.translation import pgettext_lazy
from .views import GovPlanDetailView
app_name = "govplan"
urlpatterns = [
path(
pgettext_lazy("url part", "<slug:gov>/plan/<slug:plan>/"),
GovPlanDetailView.as_view(),
name="plan",
),
]