You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

context_processors.py 295B

12345678
  1. from oscar.core.loading import import_module
  2. search_forms = import_module('search.forms', ['MultiFacetedSearchForm'])
  3. def search_form(request):
  4. u"""
  5. Ensures that the search form is available site wide
  6. """
  7. return {'search_form': search_forms.MultiFacetedSearchForm(request.GET)}