Fixed #7569 -- Improved a link in docs/generic_views.txt to link to the new pagination docs. Thanks, Carl Karsten
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7866 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4406d283e1
commit
cb70c99537
|
@ -816,15 +816,14 @@ specify the page number in the URL in one of two ways:
|
||||||
These values and lists are 1-based, not 0-based, so the first page would be
|
These values and lists are 1-based, not 0-based, so the first page would be
|
||||||
represented as page ``1``.
|
represented as page ``1``.
|
||||||
|
|
||||||
An example of the use of pagination can be found in the `object pagination`_
|
For more on pagination, read the `pagination documentation`_.
|
||||||
example model.
|
|
||||||
|
|
||||||
.. _`object pagination`: ../models/pagination/
|
.. _`pagination documentation`: ../pagination/
|
||||||
|
|
||||||
**New in Django development version:**
|
**New in Django development version:**
|
||||||
|
|
||||||
As a special case, you are also permitted to use
|
As a special case, you are also permitted to use ``last`` as a value for
|
||||||
``last`` as a value for ``page``::
|
``page``::
|
||||||
|
|
||||||
/objects/?page=last
|
/objects/?page=last
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue