""" 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 path('/document/new/', new_document_view, name='acc-new-doc'), path('document/', get_document_view, name='acc-get-doc'), path('document//remove/', remove_document_view, name='acc-remove-doc'), # Eco-account deductions path('/remove/', deduction_remove_view, name='deduction-remove'), path('/deduct/new', new_deduction_view, name='acc-new-deduction'), ]