> Questions? Comments? Concerns? One comment: something that has been bugging me for a while is the location where you specify the inline behaviour.
For example (using the Poll/Choice models): class Choice(meta.Model): poll = meta.ForeignKey(Poll, edit_inline=meta.STACKED, num_in_admin=3) Specifying the view for a related table here seems fundamentally wrong! For clarity I think it would be cleaner to specify in the Polls META classes: class Poll(meta.Model): class ADMIN: # or whatever the new syntax is! fields = ['field1', 'field2'] inline_elements = (['Choice', meta.STACKED],) class Choice(meta.Model): poll = meta.ForeignKey(Poll) Not sure if this is related to what you're working on, though. -rob