2021-07-01 13:36:07 +02:00
|
|
|
"""
|
|
|
|
Author: Michel Peltriaux
|
|
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
|
|
Created on: 30.11.20
|
|
|
|
|
|
|
|
"""
|
2021-08-24 15:55:06 +02:00
|
|
|
from django.urls import path, include
|
2021-07-01 13:36:07 +02:00
|
|
|
|
|
|
|
app_name = "compensation"
|
2021-08-24 15:55:06 +02:00
|
|
|
urlpatterns = [
|
2021-11-16 09:02:44 +01:00
|
|
|
path("", include("compensation.urls.compensation")),
|
2022-02-02 11:26:02 +01:00
|
|
|
path("acc/", include("compensation.urls.eco_account", namespace="acc")),
|
|
|
|
path("pay/", include("compensation.urls.payment", namespace="pay")),
|
2021-08-24 15:55:06 +02:00
|
|
|
]
|