This simple data model makes it impossible to display 'C' instance list in admin pages (loads forever : eats up all memory) :
** content of models.py ** from django.db import models class A(models.Model): b = models.ForeignKey("B") class B(models.Model): i_a = models.ForeignKey(A, related_name="b_i") class C(models.Model): b = models.ForeignKey(B) class Admin: list_display = ('b',) pass ** /content of models.py ** environnement : postgresql, django svn as of 07 dec. 2007 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@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-developers?hl=en -~----------~----~----~----~------~----~------~--~---