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
This commit is contained in:
Joseph Kocherhans 2009-04-01 01:29:30 +00:00
parent 4a44498dcf
commit efd7141d70
1 changed files with 1 additions and 1 deletions

View File

@ -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.