我的模型设置如下:
class ParentModel(models.Model):
some_col = models.IntegerField()
some_other = models.CharField()
class ChildModel(models.Model)
parent = models.ForeignKey(ParentModel, related_name='children')
class ToyModel(models.Model)
child_owner = models.ForeignKey(ChildModel, related_name='toys')
现在,在我的管理面板中,当我打开ParentModel
的更改列表时,我想在list_display中添加一个新字段/列,其中包含一个链接,用于打开ChildModel
的更改列表,但应用了过滤器以显示仅来自所选父母的孩子。现在我用这种方法意识到了,但我认为有一种更清洁的方法,我只是不知道如何:
class ParentAdmin(admin.ModelAdmin)
list_display = ('id', 'some_col', 'some_other', 'list_children')
def list_children(self, obj):
url = urlresolvers.reverse('admin:appname_childmodel_changelist')
return '<a href="{0}?parent__id__exact={1}">List children</a>'.format(url, obj.id)
list_children.allow_tags = True
list_children.short_description = 'Children'
admin.site.register(Parent, ParentAdmin)
所以我的问题是,如果没有这种“链接黑客”,是否有可能实现相同目标?
也可以在ParentModel
更改列表的单独列中指明其子女是否有玩具?