On Mon, 2008-10-13 at 15:46 +0300, Necmettin Begiter wrote: > Hello all, > > I have, say, 8 tables: Persons, works, phones, emails, addresses, > eaddresses, articles, books. > > Each one may have relationship with another one, like so: > > A person may have more than one work, phone, email, address, eaddress, > article and book. > A phone, email, address, eaddress, .. may be related to more than one > persons. > > So, here is a sample model: > > class Relations(models.Model): > srctbl = models.CharField(max_length=2, choices=TBL_CHOICES) > srcidx = models.IntegerField() > tgttbl = models.CharField(max_length=2, choices=TBL_CHOICES) > tgtidx = models.IntegerField() > > But there's a *slight* problem here. Possible values for *idx fields > must change when *tbl are changed, like so: > > If I select Person for srctbl, srcidx must contain names of possible > persons; if I select Phone for srctbl, srcidx must contain possible > phone numbers. And this is the same for tgt* fields. I have been > looking around Django Docs and references for a while now, but > couldn't come with a solution. IntegerField()s must actually be like > ForeignKey(Person or Phone or Email or Address or eAddress) .. Any > ideas on how to achieve this?
Use GenericRelations and GenericForeignKeys. They store a reference to the content type and object_id, so they emulate polymorphic database relations. That's just talking about the modelling at the database level, however. How you represent that to the user in forms is up to you. Regards, Malcolm > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---