OK, I have a model with a many to many relationship.. pretty
straightforward pre-1.0 code:

class SpecialEvent(models.Model):
    sponsors = models.ManyToManyField(Advertiser, related_name="event
sponsors", null=True, blank=True)

Problem is, the Powers That Be want those sponsors in a certain order.
I thought they just showed up in the order in which they were added in
the admin (ordered by id on their table)

That does not appear to be the case. They appear to order themselves
based on their own id.

So, how can I set the order in which they appear?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to