I am trying to build the search for a Django site I am building, and in that search, I am searching in 3 different models. And to get pagination on the search result list, I
In case you want to chain a lot of querysets, try this:
from itertools import chain result = list(chain(*docs))
where: docs is a list of querysets