diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index ed53ca2616..8b4daa76d7 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -208,7 +208,8 @@ class DocumentPageListView(SingleObjectListView): def get_extra_context(self): return { - 'title': _('Pages for document: %s') % self.get_document(), + 'object': self.get_document(), + 'title': _('Pages for document: %s') % self.get_document(), }