Refactoring
* create package from compensation/views
This commit is contained in:
parent
6dd13179b5
commit
d272d911ff
@ -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"),
|
||||
|
@ -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
|
||||
|
@ -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'),
|
||||
|
10
compensation/views/__init__.py
Normal file
10
compensation/views/__init__.py
Normal 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 *
|
Loading…
Reference in New Issue
Block a user