Brute-Force-Rename - Don't expect this to run.
This commit is contained in:
11
dokumente/urls.py
Normal file
11
dokumente/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.dokument_list, name='dokument_list'),
|
||||
path('<str:nummer>/', views.dokument_detail, name='dokument_detail'),
|
||||
path('<str:nummer>/history/<str:check_date>/', views.dokument_detail),
|
||||
path('<str:nummer>/history/', views.dokument_detail, {"check_date":"today"}, name='dokument_history'),
|
||||
path('<str:nummer>/checkliste/', views.dokument_checkliste, name='dokument_checkliste')
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user