I'm new to Django so pardon if this is a simple question but I've had a hard time phrasing it. I've looked for an answer quite a while already.
Suppose I'm building a very simple gradebook app.
models.py (with code ommited)
class Course(models.Model):
...
class Student(models.Model):
students = models.ManyToManyField(Course)
...
class Assignment(models.Model):
course = models.ForeignKey(Course)
student = models.ForeignKey(Student)
...
Is there a way to set the models.py up so that if I add an Assignment to a Course, it automatically associates the Assignment to all the students enrolled in the course?