Django

Code

Changeset 6410

Show
Ignore:
Timestamp:
09/23/07 01:18:49 (1 year ago)
Author:
russellm
Message:

Fixed #2603 -- Fixed a typo and added a helpful example reference to the generic view pagination docs. Thanks, Nick Efford.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/generic_views.txt

    r6280 r6410  
    801801      to create a link to every page of results. 
    802802 
    803 These values and lists are is 1-based, not 0-based, so the first page would be 
     803These values and lists are 1-based, not 0-based, so the first page would be 
    804804represented as page ``1``.  
     805 
     806An example of the use of pagination can be found in the `object pagination`_ 
     807example model.  
     808          
     809.. _`object pagination`: ../models/pagination/ 
    805810 
    806811**New in Django development version:**