ignore comments in xml when indexing; make-xml-zip script
[wolnelektury.git] / apps / search / context_processors.py
1
2 from catalogue.forms import SearchForm
3 from django.core.urlresolvers import reverse
4
5
6 def search_form(request):
7     return { 'search_form': SearchForm(reverse('search.views.hint'), request.GET) }