hoamon wrote:
> Course|Trainee|Company
> C1    |  T1   |  Com1
> C1    |  T2   |  Com1
> C1    |  T3   |  Com1
> C2    |  T1   |  Com2
> C2    |  T3   |  Com1
> C2    |  T4   |  Com2
> C3    |  T1   |  Com2

You really can't do it using standard ManyToManyField. The common way is 
to create this relation explicitly:

     class Record(models.Model): # or whatever name fits
       course = models.ForeignKey(Course)
       trainee = models.ForeignKey(Trainee)
       company = models.ForeignKey(Company)

--~--~---------~--~----~------------~-------~--~----~
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