Fixed #1510 -- Fixed ReST error in docs/generic_views.txt. Thanks, akaihola and Andy Dustman

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2543 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-03-21 15:32:57 +00:00
parent 732210320a
commit ae224efd54
1 changed files with 15 additions and 14 deletions

View File

@ -294,21 +294,22 @@ Individual views are:
Takes the following optional arguments:
======================= =================================================
Argument Description
======================= =================================================
``paginate_by`` If set to an integer, the view will paginate
objects with ``paginate_by`` objects per page.
The view will expect a ``page`` GET param with
the (zero-indexed) page number.
======================== =================================================
Argument Description
======================== =================================================
``paginate_by`` If set to an integer, the view will paginate
objects with ``paginate_by`` objects per page.
The view will expect a ``page`` GET param with
the (zero-indexed) page number.
``allow_empty`` If ``False`` and there are no objects to display,
the view will raise a 404 instead of displaying
an empty index page. ``False`` is default.
``template_object_name`` **New in Django development version.** Designates
the name of the object template variable. Default
is ``'object'``.
======================= =================================================
``allow_empty`` If ``False`` and there are no objects to display,
the view will raise a 404 instead of displaying
an empty index page. ``False`` is default.
``template_object_name`` **New in Django development version.** Designates
the name of the object template variable. Default
is ``'object'``.
======================== =================================================
Uses the template ``app_label/module_name_list`` by default.