From 9075ac4b76f9e52e09fd2946f8f485b3ce6acf42 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 2 Dec 2007 15:43:35 +0000 Subject: Fixed #685 -- archive_index() and object_list() generic views allow empty result sets by default now. Thanks, Gary Wilson and Matt Croydon. This is a backwards incompatible change. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6833 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/generic_views.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/generic_views.txt b/docs/generic_views.txt index 08ff01c372..17187894c0 100644 --- a/docs/generic_views.txt +++ b/docs/generic_views.txt @@ -188,7 +188,7 @@ a date in the *future* are not included unless you set ``allow_future`` to * ``allow_empty``: A boolean specifying whether to display the page if no objects are available. If this is ``False`` and no objects are available, the view will raise a 404 instead of displaying an empty page. By - default, this is ``False``. + default, this is ``True``. * ``context_processors``: A list of template-context processors to apply to the view's template. See the `RequestContext docs`_. @@ -718,7 +718,7 @@ A page representing a list of objects. * ``allow_empty``: A boolean specifying whether to display the page if no objects are available. If this is ``False`` and no objects are available, the view will raise a 404 instead of displaying an empty page. By - default, this is ``False``. + default, this is ``True``. * ``context_processors``: A list of template-context processors to apply to the view's template. See the `RequestContext docs`_. -- cgit v1.3