stars and tags instead of shelves, move to social app
[wolnelektury.git] / apps / search / context_processors.py
1
2 from django.core.urlresolvers import reverse
3 from search.forms import SearchForm
4
5
6 def search_form(request):
7     return { 'search_form': SearchForm(reverse('search.views.hint'), request.GET) }