show/hide this revision's text 2 Nice links

What you're after is a many to many relationship between product and order.

Something like:

class Order(models.Model):
  customer = models.foreignKey(Customer)
  total = models.charField(max_length=10)
  has_shipped = models.booleanField()
  products = models.ManyToManyField(Product)

see http://www.djangoproject.com/documentation/models/many%5Fto%5Fmany/the docs here and http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ManyToManyFieldhere.

show/hide this revision's text 1

What you're after is a many to many relationship between product and order.

Something like:

class Order(models.Model):
  customer = models.foreignKey(Customer)
  total = models.charField(max_length=10)
  has_shipped = models.booleanField()
  products = models.ManyToManyField(Product)

see http://www.djangoproject.com/documentation/models/many%5Fto%5Fmany/ and http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ManyToManyField