summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-09-15 11:19:35 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-09-15 11:19:35 +0000
commitff25059ffb751bb50e363ef53f79a1e4382705bc (patch)
tree26bdea28b1d7dd273c7816ac53f563295bab804f /docs
parent09060e9bc8377303f16a7226189e28b915313dc2 (diff)
Fixed #5357 -- Added documentation on the 'page' argument to generic object_list views. Thanks, mitja.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6280 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/generic_views.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/generic_views.txt b/docs/generic_views.txt
index f1de6b2c62..87b82f7adf 100644
--- a/docs/generic_views.txt
+++ b/docs/generic_views.txt
@@ -699,7 +699,10 @@ A page representing a list of objects.
displayed per page. If this is given, the view will paginate objects with
``paginate_by`` objects per page. The view will expect either a ``page``
query string parameter (via ``GET``) or a ``page`` variable specified in
- the URLconf. See "Notes on pagination" below.
+ the URLconf. See `Notes on pagination`_ below.
+
+ * ``page``: The current page number, as an integer. This is 1-based.
+ See `Notes on pagination`_ below.
* ``template_name``: The full name of a template to use in rendering the
page. This lets you override the default template name (see below).