Add more new icons
Add new icons for the apps: Document comments, documents, file metadata, parsing and OCR. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
This commit is contained in:
@@ -22,6 +22,19 @@ urlpatterns = [
|
||||
r'^documents/(?P<pk>\d+)/content/download/$',
|
||||
DocumentContentDownloadView.as_view(), name='document_content_download'
|
||||
),
|
||||
url(
|
||||
r'^documents/(?P<pk>\d+)/submit/$', DocumentSubmitView.as_view(),
|
||||
name='document_submit'
|
||||
),
|
||||
url(
|
||||
r'^documents/multiple/submit/$', DocumentSubmitView.as_view(),
|
||||
name='document_multiple_submit'
|
||||
),
|
||||
url(
|
||||
r'^documents/(?P<pk>\d+)/errors/$',
|
||||
DocumentParsingErrorsListView.as_view(),
|
||||
name='document_parsing_error_list'
|
||||
),
|
||||
url(
|
||||
r'^document_types/submit/$', DocumentTypeSubmitView.as_view(),
|
||||
name='document_type_submit'
|
||||
@@ -31,19 +44,6 @@ urlpatterns = [
|
||||
DocumentTypeSettingsEditView.as_view(),
|
||||
name='document_type_parsing_settings'
|
||||
),
|
||||
url(
|
||||
r'^documents/(?P<pk>\d+)/submit/$', DocumentSubmitView.as_view(),
|
||||
name='document_submit'
|
||||
),
|
||||
url(
|
||||
r'^documents/multiple/submit/$', DocumentSubmitView.as_view(),
|
||||
name='document_submit_multiple'
|
||||
),
|
||||
url(
|
||||
r'^documents/(?P<pk>\d+)/errors/$',
|
||||
DocumentParsingErrorsListView.as_view(),
|
||||
name='document_parsing_error_list'
|
||||
),
|
||||
url(r'^errors/all/$', ParseErrorListView.as_view(), name='error_list'),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user