f64a11cb50
* refactors documents and file upload to be distributed into different subfolders, depending on the type of document (InterventionDocument, RevocationDocument, ...) * refactors Document model into AbstractDocument * subclasses RevocationDocument, InterventionDocument, COmpensationDocument, EmaDocument and EcoAccountDocument from AbstractDocument to provide proper functionality for each * adds new specialized routes for each new document type (opening, removing) * drops generic get and remove routes for documents
39 lines
1.6 KiB
Python
39 lines
1.6 KiB
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
|
|
|
|
from intervention.views import index_view, new_view, open_view, edit_view, remove_view, new_document_view, share_view, \
|
|
create_share_view, remove_revocation_view, new_revocation_view, run_check_view, log_view, new_deduction_view, \
|
|
record_view, remove_document_view, get_document_view, get_revocation_view
|
|
|
|
app_name = "intervention"
|
|
urlpatterns = [
|
|
path("", index_view, name="index"),
|
|
path('new/', new_view, name='new'),
|
|
path('<id>', open_view, name='open'),
|
|
path('<id>/log', log_view, name='log'),
|
|
path('<id>/edit', edit_view, name='edit'),
|
|
path('<id>/remove', remove_view, name='remove'),
|
|
path('<id>/share/<token>', share_view, name='share'),
|
|
path('<id>/share', create_share_view, name='share-create'),
|
|
path('<id>/check', run_check_view, name='run-check'),
|
|
path('<id>/record', record_view, name='record'),
|
|
|
|
# Documents
|
|
path('<id>/document/new/', new_document_view, name='new-doc'),
|
|
path('document/<doc_id>', get_document_view, name='get-doc'),
|
|
path('document/<doc_id>/remove/', remove_document_view, name='remove-doc'),
|
|
|
|
# Deductions
|
|
path('<id>/deduction/new', new_deduction_view, name='acc-new-deduction'),
|
|
|
|
# Revocation routes
|
|
path('<id>/revocation/new', new_revocation_view, name='new-revocation'),
|
|
path('revocation/<id>/remove', remove_revocation_view, name='remove-revocation'),
|
|
path('revocation/<doc_id>', get_revocation_view, name='get-doc-revocation'),
|
|
] |