diff --git a/HISTORY.rst b/HISTORY.rst index 3080027201..1a5bc6f31b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -45,6 +45,7 @@ - Add link to view the events of a tag. - Add support for subscribing to the events of a tag. - Add the tag events view permissions to the tag model ACL. +- Hide the title link of documents in the trash. 3.0.1 (2018-07-08) diff --git a/mayan/apps/documents/views/document_views.py b/mayan/apps/documents/views/document_views.py index daeca07ae6..d980aaa940 100644 --- a/mayan/apps/documents/views/document_views.py +++ b/mayan/apps/documents/views/document_views.py @@ -119,6 +119,7 @@ class DeletedDocumentListView(DocumentListView): context = super(DeletedDocumentListView, self).get_extra_context() context.update( { + 'hide_link': True, 'title': _('Documents in trash'), } )