pagination.txt 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. ==========
  2. Pagination
  3. ==========
  4. .. module:: django.core.paginator
  5. :synopsis: Classes to help you easily manage paginated data.
  6. Django provides a few classes that help you manage paginated data -- that is,
  7. data that's split across several pages, with "Previous/Next" links. These
  8. classes live in :file:`django/core/paginator.py`.
  9. Example
  10. =======
  11. Give :class:`Paginator` a list of objects, plus the number of items you'd like to
  12. have on each page, and it gives you methods for accessing the items for each
  13. page::
  14. >>> from django.core.paginator import Paginator
  15. >>> objects = ['john', 'paul', 'george', 'ringo']
  16. >>> p = Paginator(objects, 2)
  17. >>> p.count
  18. 4
  19. >>> p.num_pages
  20. 2
  21. >>> type(p.page_range) # `<type 'rangeiterator'>` in Python 2.
  22. <class 'range_iterator'>
  23. >>> p.page_range
  24. range(1, 3)
  25. >>> page1 = p.page(1)
  26. >>> page1
  27. <Page 1 of 2>
  28. >>> page1.object_list
  29. ['john', 'paul']
  30. >>> page2 = p.page(2)
  31. >>> page2.object_list
  32. ['george', 'ringo']
  33. >>> page2.has_next()
  34. False
  35. >>> page2.has_previous()
  36. True
  37. >>> page2.has_other_pages()
  38. True
  39. >>> page2.next_page_number()
  40. Traceback (most recent call last):
  41. ...
  42. EmptyPage: That page contains no results
  43. >>> page2.previous_page_number()
  44. 1
  45. >>> page2.start_index() # The 1-based index of the first item on this page
  46. 3
  47. >>> page2.end_index() # The 1-based index of the last item on this page
  48. 4
  49. >>> p.page(0)
  50. Traceback (most recent call last):
  51. ...
  52. EmptyPage: That page number is less than 1
  53. >>> p.page(3)
  54. Traceback (most recent call last):
  55. ...
  56. EmptyPage: That page contains no results
  57. .. note::
  58. Note that you can give ``Paginator`` a list/tuple, a Django ``QuerySet``,
  59. or any other object with a ``count()`` or ``__len__()`` method. When
  60. determining the number of objects contained in the passed object,
  61. ``Paginator`` will first try calling ``count()``, then fallback to using
  62. ``len()`` if the passed object has no ``count()`` method. This allows
  63. objects such as Django's ``QuerySet`` to use a more efficient ``count()``
  64. method when available.
  65. Using ``Paginator`` in a view
  66. ==============================
  67. Here's a slightly more complex example using :class:`Paginator` in a view to
  68. paginate a queryset. We give both the view and the accompanying template to
  69. show how you can display the results. This example assumes you have a
  70. ``Contacts`` model that has already been imported.
  71. The view function looks like this::
  72. from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
  73. from django.shortcuts import render
  74. def listing(request):
  75. contact_list = Contacts.objects.all()
  76. paginator = Paginator(contact_list, 25) # Show 25 contacts per page
  77. page = request.GET.get('page')
  78. try:
  79. contacts = paginator.page(page)
  80. except PageNotAnInteger:
  81. # If page is not an integer, deliver first page.
  82. contacts = paginator.page(1)
  83. except EmptyPage:
  84. # If page is out of range (e.g. 9999), deliver last page of results.
  85. contacts = paginator.page(paginator.num_pages)
  86. return render(request, 'list.html', {'contacts': contacts})
  87. In the template :file:`list.html`, you'll want to include navigation between
  88. pages along with any interesting information from the objects themselves::
  89. {% for contact in contacts %}
  90. {# Each "contact" is a Contact model object. #}
  91. {{ contact.full_name|upper }}<br />
  92. ...
  93. {% endfor %}
  94. <div class="pagination">
  95. <span class="step-links">
  96. {% if contacts.has_previous %}
  97. <a href="?page={{ contacts.previous_page_number }}">previous</a>
  98. {% endif %}
  99. <span class="current">
  100. Page {{ contacts.number }} of {{ contacts.paginator.num_pages }}.
  101. </span>
  102. {% if contacts.has_next %}
  103. <a href="?page={{ contacts.next_page_number }}">next</a>
  104. {% endif %}
  105. </span>
  106. </div>
  107. ``Paginator`` objects
  108. =====================
  109. The :class:`Paginator` class has this constructor:
  110. .. class:: Paginator(object_list, per_page, orphans=0, allow_empty_first_page=True)
  111. Required arguments
  112. ------------------
  113. ``object_list``
  114. A list, tuple, ``QuerySet``, or other sliceable object with a ``count()``
  115. or ``__len__()`` method. For consistent pagination, ``QuerySet``\s should
  116. be ordered, e.g. with an :meth:`~django.db.models.query.QuerySet.order_by`
  117. clause or with a default :attr:`~django.db.models.Options.ordering` on the
  118. model.
  119. .. note::
  120. If you are using a ``QuerySet`` with a very large number of items,
  121. requesting high page numbers might be slow on some database backends.
  122. ``per_page``
  123. The maximum number of items to include on a page, not including orphans
  124. (see the ``orphans`` optional argument below).
  125. Optional arguments
  126. ------------------
  127. ``orphans``
  128. The minimum number of items allowed on the last page, defaults to zero.
  129. Use this when you don't want to have a last page with very few items.
  130. If the last page would normally have a number of items less than or equal
  131. to ``orphans``, then those items will be added to the previous page (which
  132. becomes the last page) instead of leaving the items on a page by
  133. themselves. For example, with 23 items, ``per_page=10``, and
  134. ``orphans=3``, there will be two pages; the first page with 10 items and
  135. the second (and last) page with 13 items.
  136. ``allow_empty_first_page``
  137. Whether or not the first page is allowed to be empty. If ``False`` and
  138. ``object_list`` is empty, then an ``EmptyPage`` error will be raised.
  139. Methods
  140. -------
  141. .. method:: Paginator.page(number)
  142. Returns a :class:`Page` object with the given 1-based index. Raises
  143. :exc:`InvalidPage` if the given page number doesn't exist.
  144. Attributes
  145. ----------
  146. .. attribute:: Paginator.count
  147. The total number of objects, across all pages.
  148. .. note::
  149. When determining the number of objects contained in ``object_list``,
  150. ``Paginator`` will first try calling ``object_list.count()``. If
  151. ``object_list`` has no ``count()`` method, then ``Paginator`` will
  152. fallback to using ``len(object_list)``. This allows objects, such as
  153. Django's ``QuerySet``, to use a more efficient ``count()`` method when
  154. available.
  155. .. attribute:: Paginator.num_pages
  156. The total number of pages.
  157. .. attribute:: Paginator.page_range
  158. A 1-based range iterator of page numbers, e.g. yielding ``[1, 2, 3, 4]``.
  159. .. versionchanged:: 1.9
  160. In older versions, ``page_range`` returned a list instead of an
  161. iterator.
  162. ``InvalidPage`` exceptions
  163. ==========================
  164. .. exception:: InvalidPage
  165. A base class for exceptions raised when a paginator is passed an invalid
  166. page number.
  167. The :meth:`Paginator.page` method raises an exception if the requested page is
  168. invalid (i.e., not an integer) or contains no objects. Generally, it's enough
  169. to catch the ``InvalidPage`` exception, but if you'd like more granularity,
  170. you can catch either of the following exceptions:
  171. .. exception:: PageNotAnInteger
  172. Raised when ``page()`` is given a value that isn't an integer.
  173. .. exception:: EmptyPage
  174. Raised when ``page()`` is given a valid value but no objects exist on that
  175. page.
  176. Both of the exceptions are subclasses of :exc:`InvalidPage`, so you can handle
  177. them both with a simple ``except InvalidPage``.
  178. ``Page`` objects
  179. ================
  180. You usually won't construct ``Page`` objects by hand -- you'll get them
  181. using :meth:`Paginator.page`.
  182. .. class:: Page(object_list, number, paginator)
  183. A page acts like a sequence of :attr:`Page.object_list` when using
  184. ``len()`` or iterating it directly.
  185. Methods
  186. -------
  187. .. method:: Page.has_next()
  188. Returns ``True`` if there's a next page.
  189. .. method:: Page.has_previous()
  190. Returns ``True`` if there's a previous page.
  191. .. method:: Page.has_other_pages()
  192. Returns ``True`` if there's a next *or* previous page.
  193. .. method:: Page.next_page_number()
  194. Returns the next page number. Raises :exc:`InvalidPage` if next page
  195. doesn't exist.
  196. .. method:: Page.previous_page_number()
  197. Returns the previous page number. Raises :exc:`InvalidPage` if previous
  198. page doesn't exist.
  199. .. method:: Page.start_index()
  200. Returns the 1-based index of the first object on the page, relative to all
  201. of the objects in the paginator's list. For example, when paginating a list
  202. of 5 objects with 2 objects per page, the second page's
  203. :meth:`~Page.start_index` would return ``3``.
  204. .. method:: Page.end_index()
  205. Returns the 1-based index of the last object on the page, relative to all
  206. of the objects in the paginator's list. For example, when paginating a list
  207. of 5 objects with 2 objects per page, the second page's
  208. :meth:`~Page.end_index` would return ``4``.
  209. Attributes
  210. ----------
  211. .. attribute:: Page.object_list
  212. The list of objects on this page.
  213. .. attribute:: Page.number
  214. The 1-based page number for this page.
  215. .. attribute:: Page.paginator
  216. The associated :class:`Paginator` object.