Maybe I use a poor example to show the question here. Let me use the real question to explain what troubles me: Here are an object need localization information, for example it's name is different from one country to another country. In this case i use a seperate table to store translations( includes id, language id, and translation), then i use many to many field to describe the name field. When i need two fields which have localization information, i got the question i asked here.
Matthew Marshall wrote: > On Thursday 01 September 2005 06:13 am, Leo wrote: > > class People(Model): > > first_name = ManyToManyField (Name) > > last_name = ManyToManyField (Name) > > I might be misunderstanding the situation, but why are you using > ManyToManyField instead of ForeignKey? > > (Sorry I don't know the answer to your question.) > > MWM

