""" Author: Michel Peltriaux Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany Contact: michel.peltriaux@sgdnord.rlp.de Created on: 30.11.20 """ from django.urls import path from compensation.views import * app_name = "compensation" urlpatterns = [ # Main compensation path("", index_view, name="index"), path('new', new_view, name='new'), path('', open_view, name='open'), path('/edit', edit_view, name='edit'), path('/remove', remove_view, name='remove'), # Payment path('pay/new', new_view, name='pay-new'), path('pay/', open_view, name='pay-open'), path('pay//edit', edit_view, name='pay-edit'), path('pay//remove', remove_view, name='pay-remove'), # Eco-account path("acc/", account_index_view, name="acc-index"), path('acc/new/', account_new_view, name='acc-new'), path('acc/', account_open_view, name='acc-open'), path('acc//edit', account_edit_view, name='acc-edit'), path('acc//remove', account_remove_view, name='acc-remove'), ]