I am using django-haystack for searching. How can i display in the template the count of search results found using haystack search in database? I mean where do i have to change my haystack views to get the count of searchquery. Would really appreciate help.
Share
How about
SearchQuerySet.count()? In the template, it would be{{ mysearchqueryset.count }}http://readthedocs.org/docs/django-haystack/en/latest/searchqueryset_api.html#count