Within the Meta class of the Model you can set the default ordering of
objects when getting a list of them.

class Meta:
    ordering = ['field_to_order_by']

-richard


On 9/26/07, Vitaliy <[EMAIL PROTECTED]> wrote:
>
>
> For example i have this model:
>
> class Post(models.Model):
>    #some fileds
>
> class Comment(models.Model):
>    post = models.ForeignKey(Post)
>    #some fields
>
>
> to get all comments for Post I use this:
> somePostObject.comment_set.all
>
>
> is there any posibiliy to set default commet set ordergin ?
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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