summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorwookkl <wjddnr315@gmail.com>2025-03-19 01:30:48 +0900
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-03-25 12:04:13 +0100
commit334677ad576400a3b74da3f89ac70314235c1876 (patch)
tree03c2b7770853df5ac8cb2deea215076f8e698f81 /docs/ref
parentfecca298a2c6de22b054eaffeb4368b1167c7fd5 (diff)
Fixed #35452 -- Deprecated orphans being more than or equal to page_size in pagination.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/paginator.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/ref/paginator.txt b/docs/ref/paginator.txt
index d5b5b0f30e..5acd3d87c2 100644
--- a/docs/ref/paginator.txt
+++ b/docs/ref/paginator.txt
@@ -48,7 +48,13 @@ For examples, see the :doc:`Pagination topic guide </topics/pagination>`.
themselves. For example, with 23 items, ``per_page=10``, and ``orphans=3``,
there will be two pages; the first page with 10 items and the second
(and last) page with 13 items. ``orphans`` defaults to zero, which means
- pages are never combined and the last page may have one item.
+ pages are never combined and the last page may have one item. ``orphans``
+ should be less than the :attr:`~Paginator.per_page` value.
+
+ .. deprecated:: 6.0
+
+ Support for the ``orphans`` argument being larger than or equal to the
+ ``per_page`` argument is deprecated.
.. attribute:: Paginator.allow_empty_first_page