Hi all!
I have 2 models: Clip, Tag.
class Clip(models.Model):
          name = models.CharField(max_length=80)
          tags = models.ManyToManyField(Tag, through = 'TagsToClips')

class Tag(models.Model):
          tagName = models.CharField(max_length=80, unique=True)

class TagsToClips(models.Model)
          clip = models.ForeignKey(Clip)
          tag = models.ForeignKey(Tag)
          start_frame = models.IntegerField()
    duration = models.IntegerField()

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to