I've created model Structure referenced to itself and filled it with
my data.

class Structure(models.Model):
        parent=models.ForeignKey('self', blank=True, null=True,
related_name='child_set')
        title=models.CharField(max_length=100)

Default admin interface shows my data as a plain list. What should I
do to see my data in a tree?

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to