Django:使用GenericTabularInline的父模型的content_type

时间:2017-05-30 17:39:55

标签: django django-admin django-contenttypes generic-foreign-key

在Django 1.8中,我有一个父类和一个子类,它们不是abstract

class Parent(models.Model):
    ...

class Child(Parent):
    ...

我有另一个模型,它有一个GenericForeignKey:

class Tags(models.Model):
    ...
    content_type = ...
    object_id = ...
    content_object = GenericForeignKey(...)
    ...

现在我想构建ParentModelAdminChildModelAdmin,以便两者都显示与内联(TagsGenericTabularInline)相同的标记列表。

我怎样才能做到这一点?

0 个答案:

没有答案