views:

1342

answers:

1

I have a many to many relationship between 2 tables Users an Domains. I have defined this relationship in the Domains class. So in the admin interface I see the Users when I am viewing Domains. But I do not see Domains when I am viewing Users. How can I achieve this.

+1  A: 

I think what you're looking for is InlineModelAdmin.

bryan
Probably not what the OP was hoping for (a way to use the regular ManyToMany filter selector from either side of the relation), but this is the solution I would use too.
Carl Meyer
How do I refer to the relationship table (Domains_User in my case)I do not have an explicit intermediary table. In this case how do I use InlineModelAdmin for ManyToManyRelationship