Refactoring #43
@ -6,7 +6,7 @@ Created on: 24.08.21
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
from django.urls import path
|
from django.urls import path
|
||||||
from compensation.views.eco_account_views import *
|
from compensation.views import *
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", index_view, name="acc-index"),
|
path("", index_view, name="acc-index"),
|
||||||
|
@ -6,7 +6,7 @@ Created on: 24.08.21
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
from django.urls import path
|
from django.urls import path
|
||||||
from compensation.views.compensation_views import *
|
from compensation.views import *
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
# Main compensation
|
# Main compensation
|
||||||
|
@ -6,7 +6,7 @@ Created on: 24.08.21
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
from django.urls import path
|
from django.urls import path
|
||||||
from compensation.views.payment_views import *
|
from compensation.views import *
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('<intervention_id>/new', new_payment_view, name='pay-new'),
|
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