From b8c74125e86f9e65c2103807ae1c30a8804deabd Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 14 Jul 2017 14:09:27 -0400 Subject: [PATCH] Use the item view for the search results. Signed-off-by: Roberto Rosario --- mayan/apps/dynamic_search/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mayan/apps/dynamic_search/views.py b/mayan/apps/dynamic_search/views.py index 153e667efe..322feb21ee 100644 --- a/mayan/apps/dynamic_search/views.py +++ b/mayan/apps/dynamic_search/views.py @@ -19,6 +19,7 @@ class ResultsView(SearchModelMixin, SingleObjectListView): def get_extra_context(self): context = { 'hide_links': True, + 'list_as_items': True, 'search_model': self.search_model, 'search_results_limit': setting_limit.value, 'title': _('Search results for: %s') % self.search_model.label,