I have to models that have a FK relationship:
class Restaurant(models.Model):
# ...
pass
class Address(models.Model):
# ...
restaurant = models.ForeingKey(Restaurant)
On the admin I would like to add the addresses on the Restaurant form. How can I accomplish this?
Thank you
You want to use an inline model.