You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After changing ALDRYN_SEARCH_PAGINATION = None as suggested in the docs, no results were returned for valid queries.
The culprit is in search_items.html, which required {% for result in page_obj.object_list %} to become {% for result in object_list %}.
The text was updated successfully, but these errors were encountered:
After changing
ALDRYN_SEARCH_PAGINATION = None
as suggested in the docs, no results were returned for valid queries.The culprit is in
search_items.html
, which required{% for result in page_obj.object_list %}
to become{% for result in object_list %}
.The text was updated successfully, but these errors were encountered: