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 = [
|
|
|
|
path("", include("compensation.comp_urls")),
|
|
|
|
path("acc/", include("compensation.account_urls")),
|
|
|
|
path("pay/", include("compensation.payment_urls")),
|
|
|
|
]
|