mpeltriaux
fd8ce4b2ec
* create package from compensation/urls * renames modules inside of compensation/urls and compensation/views
15 lines
437 B
Python
15 lines
437 B
Python
"""
|
|
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, include
|
|
|
|
app_name = "compensation"
|
|
urlpatterns = [
|
|
path("", include("compensation.urls.compensation")),
|
|
path("acc/", include("compensation.urls.eco_account")),
|
|
path("pay/", include("compensation.urls.payment")),
|
|
] |