Fixed #13002 -- Corrected description of the default form base class in InlineModelAdmin classes. Thanks to stijn@typograaf.be for the report, and timo for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13209 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-05-10 13:11:09 +00:00
parent d12130a72c
commit efa495f4f0
1 changed files with 1 additions and 1 deletions

View File

@ -1049,7 +1049,7 @@ many possibilities of customization. Inlines are built around
``form`` ``form``
~~~~~~~~ ~~~~~~~~
The value for ``form`` defaults to ``BaseModelForm``. This is what is The value for ``form`` defaults to ``ModelForm``. This is what is
passed through to ``inlineformset_factory`` when creating the formset for this passed through to ``inlineformset_factory`` when creating the formset for this
inline. inline.