From efd7141d70c011dd9d49c7ae5fdaa57100a6dbed Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Wed, 1 Apr 2009 01:29:30 +0000 Subject: [PATCH] Fixed #9452. InlineModelAdmin docs now mention the right default for 'form'. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10309 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/admin/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 4592eab862..e0a1b79b2d 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -887,7 +887,7 @@ many possibilities of customization. Inlines are built around ``form`` ~~~~~~~~ -The value for ``form`` is inherited from ``ModelAdmin``. This is what is +The value for ``form`` defaults to ``BaseModelForm``. This is what is passed through to ``formset_factory`` when creating the formset for this inline.