使用中のカスタムのものを除いて、すべての ManyToMany が管理フォームに表示されthrough
ます。
元のモデル フィールド
class Action(models.Model):
combo_action = models.ForeignKey('Action', related_name = '+', blank = True, null = True, through = 'Action_Effects')
combo_bonus_effects = models.ManyToManyField('Effect', related_name = 'ComboInflicted', through = 'Action_Combo_Effects')
参照モデル
class Action_Effects(models.Model):
action = models.ForeignKey('Action')
effect = models.ForeignKey('Effect')
duration = models.IntegerField(blank = True, null = True)
combo_potency = models.IntegerField(blank = True, null = True)
class Action_Combo_Effects(models.Model):
action = models.ForeignKey('Action')
effect = models.ForeignKey('Effect')
duration = models.IntegerField(blank = True, null = True)
combo_potency = models.IntegerField(blank = True, null = True)
これらをまだ表示する方法が見つかりません。