Initial commit
This commit is contained in:
commit
19170142c3
20 changed files with 894 additions and 0 deletions
14
froide_govplan/urls.py
Normal file
14
froide_govplan/urls.py
Normal 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",
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue