From 9c92b9a59eb9d48009c938cf02c2971576cfb0e9 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 4 May 2019 20:16:02 -0400 Subject: [PATCH] Remove some usages of column_class Signed-off-by: Roberto Rosario --- mayan/apps/documents/views/document_page_views.py | 1 - mayan/apps/tags/views.py | 1 - 2 files changed, 2 deletions(-) diff --git a/mayan/apps/documents/views/document_page_views.py b/mayan/apps/documents/views/document_page_views.py index d471042693..4b9df1c9d2 100644 --- a/mayan/apps/documents/views/document_page_views.py +++ b/mayan/apps/documents/views/document_page_views.py @@ -51,7 +51,6 @@ class DocumentPageListView(SingleObjectListView): def get_extra_context(self): return { - 'column_class': 'col-xs-12 col-sm-6 col-md-4 col-lg-3', 'list_as_items': True, 'object': self.get_document(), 'title': _('Pages for document: %s') % self.get_document(), diff --git a/mayan/apps/tags/views.py b/mayan/apps/tags/views.py index f3bd979e44..4ad385e177 100644 --- a/mayan/apps/tags/views.py +++ b/mayan/apps/tags/views.py @@ -238,7 +238,6 @@ class TagDocumentListView(DocumentListView): context = super(TagDocumentListView, self).get_extra_context() context.update( { - 'column_class': 'col-xs-12 col-sm-6 col-md-4 col-lg-3', 'object': self.get_tag(), 'title': _('Documents with the tag: %s') % self.get_tag(), }