""" Author: Michel Peltriaux Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany Contact: michel.peltriaux@sgdnord.rlp.de Created on: 24.08.21 """ from django.urls import path from compensation.views.compensation_views import * urlpatterns = [ # Main compensation path("", index_view, name="index"), path('new', new_view, name='new'), path('', open_view, name='open'), path('/log', log_view, name='log'), path('/edit', edit_view, name='edit'), path('/remove', remove_view, name='remove'), path('/state/new', state_new_view, name='new-state'), path('/action/new', action_new_view, name='new-action'), path('/deadline/new', deadline_new_view, name="new-deadline"), # Documents # Document remove route can be found in konova/urls.py path('/document/new/', new_document_view, name='new-doc'), # Generic state routes path('state//remove', state_remove_view, name='state-remove'), # Generic action routes path('action//remove', action_remove_view, name='action-remove'), ]