Hi,
I'm new do haystack, so this might sound like a newbie question.
I've followed the instructions on the official Haystack site and have it all working, and my search.html template looks exactly like the search template on the site:
In urls.py, I have the following entry:
(r'^search/', include('haystack.urls')),
I have also set up my indexes and have re_indexed, and all seems to be good.
The problem I have is that my search results all appear on one page, and the pagination code in search.html gets ignored because the page.has_next and page.has_previous values are always false.
So it looks like I have no idea how to set the pagination value, ie. how many records are displayed per page.
Do I need to create a custom view in order to implement pagination, or is there some built in Haystack functionality that I can use?
If someone could kindly point me in the right direction, that would be greatly appreciated.
Mark