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 ...
Aug 3, 20241 min read32
