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:
parent
732210320a
commit
ae224efd54
|
@ -294,9 +294,9 @@ 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
|
||||
|
@ -305,10 +305,11 @@ Individual views are:
|
|||
``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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue