Remove some usages of column_class

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-05-04 20:16:02 -04:00
parent b67bfa8ec4
commit 9c92b9a59e
2 changed files with 0 additions and 2 deletions

View File

@@ -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(),

View File

@@ -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(),
}