如何为抽象模型创建Django ModelForm?

时间:2015-09-15 01:37:50

标签: python django django-forms

我有一个抽象模型,我所有其他模型都继承了它,它看起来像这样。

class SupremeModel(models.Model):
    creator = models.ForeignKey(User, related_name="%(class)s_creator")
    created = models.DateTimeField(null=True, blank=True)
    deleted = models.BooleanField(default=False)
    modified = models.DateTimeField(null=True,blank=True)

    class Meta:
        abstract = True

然后,我有一些其他模型继承自这个模型,沿着这些线......

class ExampleModel(SupremeModel):
    name = models.TextField(null=False, blank=False)
    description = models.TextField(null=False, blank=False)

class AnotherModel(SupremeModel):
    title = models.TextField(null=False, blank=False)
    location = models.TextField(null=False, blank=False)

我想为几乎所有类似于ExampleModel的自定义模型创建一个Django模型表单,但我总是希望在表单中排除SupremeModel中的字段...

如何创建一个ModelForm,可用于继承将隐藏创建者,创建,删除和修改的排除参数,但显示所有其他字段(在本例中为名称和描述或标题和位置)。 / p>

1 个答案:

答案 0 :(得分:3)

你可以试试这个

class ExcludedModelForm(ModelForm):
    class Meta:
        exclude = ['creator', 'created', 'deleted', 'modified']

class ExampleModelForm(ExcludedModelForm):
    class Meta(ExcludedModelForm.Meta):
        model = ExampleModel