Re: Many2Many to same table w. intermediary table - admin problems

2006-08-24 Thread Mathias Picker
Ruben, I think this is the same as http://code.djangoproject.com/ticket/1939 It seems to be somewhat involved in the dirty areas of admin. I have for now stopped thinking about it... / Mathias Am Donnerstag, den 24.08.2006, 07:42 -0700 schrieb Ruben: > Today I run into the same problem. > -

Re: Many2Many to same table w. intermediary table - admin problems

2006-08-24 Thread Ruben
Today I run into the same problem. --- It's not necessarily your "to_party" attribute that is missing. I could vary the problem by using a Meta class with a unique_together option, and additionally, moving the "edit_inline" to my second ForeignKey: class MyIntermediate(models.Model):

Many2Many to same table w. intermediary table - admin problems

2006-08-04 Thread mathiasp
Can admin edit_inline a many2many relation to the same table via an intermediary? How? Example: party <- relation -> party, editing party & using edit_inlne for relation, django 0.95 admin bombs. Details: Using this abridged model: - from django.db import models class Par