From dfe06aac0c96d20829b27fdce8bb7d212df81c8b Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Mon, 16 Jun 2008 21:32:53 +0000 Subject: [PATCH] newforms-admin: Fixed #7473 -- Fixed a title level inconsistency in docs/modelforms.txt. Thanks Visik7. git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7670 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modelforms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modelforms.txt b/docs/modelforms.txt index f2222c1fc0..fae860944e 100644 --- a/docs/modelforms.txt +++ b/docs/modelforms.txt @@ -400,7 +400,7 @@ to the ``Author`` model. It works just like a regular formset:: and by default uses ``can_delete=True``. Changing the queryset -~~~~~~~~~~~~~~~~~~~~~ +--------------------- By default when you create a formset from a model the queryset will be all objects in the model. This is best shown as ``Author.objects.all()``. This is