That gives me an error in the admin:
(1054, "Unknown column 'page_text._order' in 'order clause'")

My case is almost identical to the example in the documentation:

class Text(models.Model):
    page = models.ForeignKey(Page, db_index=True,
edit_inline=models.STACKED)
    # ...

    class Meta:
        order_with_respect_to = 'page'

I also noticed a bug, I think:
With class Admin ordering the inlined models were ordered by the column
I provide.  With class Meta ordering they are not.  Meta ordering does
order them in their own model list but not if the model is inlined.


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

Reply via email to