vote up 2 vote down star
1

I have a ManyToMany relationship setup with intermediary objects in Django. Any ideas how I can order the < select >s in the Inlines that show up for the intermediary objects?

flag

60% accept rate

2 Answers

vote up 1 vote down

You can use fields inside an InlineModelAdmin:

class FooInline(admin.StackedInline):
    model = Foo
    fields = ('field1', 'field2', 'field3')
link|flag
Sorry, but I wanted to order the elements that show up under a FK relationship in the intermediary object. The word < select > was eaten up by SO. – Yuvi May 28 at 17:39
vote up 0 vote down

Have you tried specifying a model for the many-to-many relationship using the through argument? You should be able to customize the admin with a ModelAdmin class then.

class A(models.Model):
      pass

class B(models.Model):
   m2m = models.ManyToManyField(A, through='C')

class C(models.Model):
    a = models.ForeignKey(A)
    b = models.ForeignKey(B)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.