Hi there, I wondering how, with the following models, I would be able
to edit Car_Part on the admin page of Car.  I want to be able to add
many parts to a car, and specify the amount of each part.

class Car(models.Model):
    name = models.Textfield()

class Part(models.Model):
    number = models.TextField()

class Car_Part(models.Model):
    car = models.ForeignKey(Car)
    part = models.ForeignKey(Part)

    # Amount of Parts in Car
    amount = models.IntegerField()

This is using a manytomany relationship with an intermediary table as
described at
http://www.djangoproject.com/documentation/models/m2m_intermediary/.

Thanks,
  Topdeck


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

Reply via email to