Refactoring

* create package from compensation/views
This commit is contained in:
mpeltriaux 2021-11-16 08:58:15 +01:00
parent 78945d648f
commit 899bd28247
4 changed files with 13 additions and 3 deletions

View File

@ -6,7 +6,7 @@ Created on: 24.08.21
"""
from django.urls import path
from compensation.views.eco_account_views import *
from compensation.views import *
urlpatterns = [
path("", index_view, name="acc-index"),

View File

@ -6,7 +6,7 @@ Created on: 24.08.21
"""
from django.urls import path
from compensation.views.compensation_views import *
from compensation.views import *
urlpatterns = [
# Main compensation

View File

@ -6,7 +6,7 @@ Created on: 24.08.21
"""
from django.urls import path
from compensation.views.payment_views import *
from compensation.views import *
urlpatterns = [
path('<intervention_id>/new', new_payment_view, name='pay-new'),

View File

@ -0,0 +1,10 @@
"""
Author: Michel Peltriaux
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
Contact: michel.peltriaux@sgdnord.rlp.de
Created on: 16.11.21
"""
from .compensation_views import *
from .eco_account_views import *
from .payment_views import *