#86 Edit document EMA

* adds buttons and urls for ema
This commit is contained in:
2022-02-10 10:28:41 +01:00
parent c5534bcd55
commit 4a777e4b01
3 changed files with 52 additions and 9 deletions

View File

@@ -30,7 +30,8 @@ urlpatterns = [
# Documents
path('<id>/document/new/', document_new_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'),
path('<id>/document/<doc_id>', get_document_view, name='get-doc'),
path('<id>/document/<doc_id>/edit/', edit_document_view, name='edit-doc'),
path('<id>/document/<doc_id>/remove/', remove_document_view, name='remove-doc'),
]