#86 Edit document Compensation
* adds support for editing of documents * adds buttons and urls for compensation * simplifies getter for all documents
This commit is contained in:
@@ -28,7 +28,8 @@ urlpatterns = [
|
||||
|
||||
# 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'),
|
||||
path('<id>/document/<doc_id>', get_document_view, name='get-doc'),
|
||||
path('<id>/document/<doc_id>/remove/', remove_document_view, name='remove-doc'),
|
||||
path('<id>/document/<doc_id>/edit/', edit_document_view, name='edit-doc'),
|
||||
|
||||
]
|
||||
Reference in New Issue
Block a user