I have 3 Models: class Workflow(models.Model): name = models.CharField(max_length=255) company = models.ForeignKey(Company) class Meta: unique_together = ('name', 'company')
class Milestone(models.Model): workflow = models.ForeignKey(Workflow) tasks = models.ManyToManyField(Task) class Task(models.Model): task = models.CharField(max_length=255) How could I create a form that allows me to add many milestones to a workflow and many tasks to a milestone? -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.