I have 3 models, Shift, Person & Shiftmap. class Shift(models.Model): name = models.CharField() date = models.DateTimeField()
class Person(models.Model): first_name = models.CharField() last_name = models.CharField() class Shiftmap(models.Model): shift = models.ForeignKey(Shift) person = models.ForeignKey(Person) This is a basic run down, not the actual models. You get the idea though. I want to use Person.shiftmap_set.all() but I want to sort it by Shiftmap.shift.date. Is this possible? Basically I need to use a Person object, to sort all Shifts assigned to it, via Shiftmap, sorted by Shift.date. Thanks! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---