Re: [mezzanine-users] Trying to use 'inline' in Admin with a many to many relationship

2015-03-04 Thread Josh Cartmell
Hi Graham, M2M don't appear as inlines but appear on the model itself. If you want to go with inlines then you would want Span to have a ForeignKey to Happening and Happening wouldn't reference Span at all (on the model side). Here's a model with an M2M:

Re: [mezzanine-users] Trying to use 'inline' in Admin with a many to many relationship

2015-03-04 Thread Graham
Thanks Josh I got myself mixed up, your code links were very helpful to me. TabularDynamicInlineAdmin was what I needed Cheers G On 05/03/15 04:45, Josh Cartmell wrote: Hi Graham, M2M don't appear as inlines but appear on the model itself. If you want to go with inlines then you would want