I use haystack with whoosh, and django 1.3. In my url I have:
url(r'^search/', include('haystack.urls')),
I created custom template in app: search/seach.html:
{% if page.object_list %}
{% autopaginate page.object_list 3 %}
{% for arg in page.object_list %}
...
{% endfor%}
{% paginate %}
My search works fine! Also rendered pagination (with paginate templatetag) is correct. But when I try to go to next page, I get this error:
Page not found (404)
Request Method: GET
Request URL: http://127.0.0.1:8000/search/?page=2&q=Aktualno%C5%9B%C4%87
Can You help me? Whats wrong?