1
0
mirror of https://github.com/django/django.git synced 2025-07-19 17:19:12 +00:00

[1.0.x] Fixed #9452. InlineModelAdmin docs now mention the right default for 'form'. Backport of r10309 from trunk. Forgot to thank patrickk. Sorry about that.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10310 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2009-04-01 01:34:49 +00:00
parent 8f6e1cdf9f
commit 6b2e28d963

View File

@ -733,7 +733,7 @@ many possibilities of customization. Inlines are built around
``form`` ``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 passed through to ``formset_factory`` when creating the formset for this
inline. inline.