Don't mutate your paginated Queryset
Django's Paginator works to batch your query items into pages. Under the hood it uses lazy slicing which is accomplished in sql by offset and limit.
Warning altering the data affects the limit/offset of proceeding paginated pages
data ...
blog.danwald.me1 min read