If you want to have some hierarchy for you pages, look at django-mptt,
but
with this inheritance type (non abstract) it works not correct (I have
added some changes to it to support this)
another way i describe below.

If you don't need hierarchy, so simple add 'order' field to Page

For hierachy:
1. Add field parent = model.ForeignKey('self', blank=True, null=True)
to Page
2. register Page in admin
3. In Page change_list you will see Page of both types at the same
time

Good luck!
--~--~---------~--~----~------------~-------~--~----~
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