我有一个Paper
及其外键ChoiceQuestion
模型及其外键Choices
模型。
我想知道django-admin是否在Choices
的更改表单页面中显示Paper
。
class Paper(models.Model):
"""pagers"""
# ...
class ChoiceQuestion(models.Model):
paper = models.ForeignKey(Paper)
name = models.CharField(max_length=256)
class Choice(models.Model):
choice_question = models.ForeignKey(ChoiceQuestion)
text = models.CharField(max_length=256)
通常我们可以在ChoiceQuestion
的编辑页面中修改Paper
,但我怎样才能在此页面中编辑选择?
答案 0 :(得分:0)