foerderbarometer/input/urls.py

15 lines
585 B
Python
Raw Normal View History

2020-09-22 10:21:05 +00:00
from django.urls import path
from .views import project, accreditation, travel, certificate, ExternView, done, authorize, deny
2020-09-22 10:21:05 +00:00
urlpatterns = [
2020-10-06 09:42:44 +00:00
path('project', project, name='project'),
path('accreditation', accreditation, name='accreditation'),
path('travel', travel, name='travel'),
path('certificate', certificate, name='certificate'),
2020-10-01 10:08:02 +00:00
path('extern', ExternView.as_view(), name='extern'),
path('saved', done, name='done'),
path('authorize/<str:choice>/<int:pk>', authorize, name='authorize'),
path('deny/<str:choice>/<int:pk>', deny, name='deny')
2020-09-22 10:21:05 +00:00
]