比方說,我有這樣的模式: class Foo(models.Model):
bar = models.ForeignKey(Bar)
currency = models.ForeignKey(Currency) # currency is just an example
is_active = models.BooleanField()
現在假設foo是酒吧的內聯
我正在組建一個satchmo應用程序的管理員。 Satchmo使用OneToOne關係來擴展基地Product模型,並且我想在一頁上進行編輯。 可以將OneToOne關係作爲內聯?如果不是,最好的辦法是將一些字段添加到我的管理員的給定頁面,最終將保存到OneToOne關係中? 例如: class Product(models.Model):
name = models.CharField