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.
| 12345678 |
- from oscar.core.loading import import_module
- search_forms = import_module('search.forms', ['MultiFacetedSearchForm'])
-
- def search_form(request):
- u"""
- Ensures that the search form is available site wide
- """
- return {'search_form': search_forms.MultiFacetedSearchForm(request.GET)}
|