class Animal(models.Model):
title = models.CharField(max_length=255)
color = models.ForeignKey(Color)
class Color(models.Model):
name = models.CharField(null=False, max_length=250)
other = models.CharField(null=False, max_length=250)
如何在管理员StackedInline
中创建?Animal
我需要Color
在编辑Animal
对象期间查看属性。