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
This will do the work without using any other libs
result_list = list(page_list) + list(article_list) + list(post_list)