up vote 2 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

38% accept rate
feedback

3 Answers

You can use fields inside an InlineModelAdmin:

class FooInline(admin.StackedInline):
    model = Foo
    fields = ('field1', 'field2', 'field3')
link|improve this answer
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 '09 at 17:39
feedback

I think this could be what you're looking for:

Orderable inlines using drag and drop with jQuery UI http://djangosnippets.org/snippets/1053/

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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