""" 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.eco_account_views import * urlpatterns = [ path("", index_view, name="acc-index"), path('new/', new_view, name='acc-new'), path('', open_view, name='acc-open'), path('/log', log_view, name='acc-log'), path('/record', record_view, name='acc-record'), path('/edit', edit_view, name='acc-edit'), path('/remove', remove_view, name='acc-remove'), path('/state/new', state_new_view, name='acc-new-state'), path('/action/new', action_new_view, name='acc-new-action'), path('/deadline/new', deadline_new_view, name="acc-new-deadline"), # Documents # Document remove route can be found in konova/urls.py path('/document/new/', new_document_view, name='acc-new-doc'), # Eco-account withdraws path('/remove/', withdraw_remove_view, name='withdraw-remove'), path('/withdraw/new', new_withdraw_view, name='acc-new-withdraw'), ]