在Django模型中,如何从A-Z

时间:2015-05-09 06:09:36

标签: python django django-models django-forms django-admin

我获得了QuestionChoice模型。

class Question(models.Model):
    """ question """


class Choice(models.Model):
    question = models.ForeignKey(Question)
    text = models.CharField(max_length=128)
    # index  ( from A-Z )

我想动态地显示Django-admin ChoiceInline中每个选项的索引。

enter image description here

如何达到这个目标?

0 个答案:

没有答案