I'm in the process of converting a bunch of sites from pre-nfa to
1.0. One of the things I've run across is the change in inlines in
the admin interface. Previously, there was (http://
www.djangoproject.com/documentation/0.96/model-api/#many-to-one-relationships)
a parameter called num_in_admin that, when set to =1, would show all
filled models and one blank, allowing you to have the ability to add
as many of an object as you want without having a page filled with
blank models.
The current implementation, however doesn't seem to support this
(
http://docs.djangoproject.com/en/dev/ref/contrib/admin/
#inlinemodeladmin-objects). Am I overlooking something obvious, or is
there another way to do this?