Hi,
This is the simplified version of my code:
class Test(models.Model):
    parent = models.ForeignKey('self',edit_inline=models.TABULAR)

and the error I got:
RuntimeError: maximum recursion depth exceeded

I can understand that's because it's doing recursive for the child
object, grand child object and so on until it reaches the upper limit
of recursion. What I really want to do is just one level of recursion,
so I get a structure of the following if know what I mean:
test(parent)
--test1(child)
--test2(child)
--test3(child)

Is there a way to achieve this?
Thanks
Cliff
--~--~---------~--~----~------------~-------~--~----~
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