Hello :
I have this model :
class Rel(models.Model):
n = models.ForeignKey(MASTER)
r = models.ForeignKey(MASTER,null=True,related_name='child_set',
blank=True)
But in the admin gets too slow since this model tries to fill the SELECTs
with all the posible values and the MASTER table is BIG .
Is there a way to make this faster ??
Thank you
Leonel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---