私はモデルが私は、Djangoのフィールドセットを動作させることはできません右
class Spell(models.Model):
name = models.CharField(max_length=255, unique=True)
spell_type = models.CharField(max_length=1, choices=CHOICES)
spell_level = models.IntegerField()
casting_time = models.CharField(max_length=255)
casting_range = models.CharField(max_length=255)
verbal = models.BooleanField(default=True)
somatic = models.BooleanField(default=False)
material = models.CharField(max_length=255, blank=True, null=True)
duration = models.CharField(max_length=255)
classes = models.ManyToManyField('PlayerClass', related_name='spells', blank=True)
description = HTMLField()
スペルと私は私のadmin.py
class SpellAdmin(admin.ModelAdmin):
fields = ('name', 'spell_type', 'casting_time', 'casting_range',
('verbal', 'somatic', 'material'),
'duration', 'classes', 'description')
しかし、口頭で、体細胞および材料にこの管理クラスを入れている必要があり管理者の追加または変更フォームの同じ行に表示されません。限り、私はすべてを設定したと言うことができる限りlike the docs say。私はdjango 1.9.6を使用しています。誰かが私が間違っていたか何もしていないアイデアを持っていますか?
これは私の初めての管理者クラスですが、登録することさえ考えなかったのです。 – Azure