Django

Code

Changeset 4593

Show
Ignore:
Timestamp:
02/25/07 23:07:54 (2 years ago)
Author:
jacob
Message:

Fixed #3249: small doc fix to pagination documentation. Thanks, Nikolaus Schlemm.

Files:

Legend:

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

    r4591 r4593  
    687687      displayed per page. If this is given, the view will paginate objects with 
    688688      ``paginate_by`` objects per page. The view will expect either a ``page`` 
    689       query string parameter (via ``GET``) containing a zero-indexed page 
     689      query string parameter (via ``GET``) containing a 1-based page 
    690690      number, or a ``page`` variable specified in the URLconf. See 
    691691      "Notes on pagination" below.