2π
β
It seems that the page.object_list variable name for the queryset does not exist.
Try the object_list without the βpageβ prefix.
instead of
{% for result in page.object_list %}
use
{% for result in object_list %}
Alternatively you can provide a custom variable name in the view by appending something like this
context_object_name = 'haystack_objects'
and use it in the template
{% for result in haystack_objects %}
π€Peterpanx
Source:stackexchange.com