我正在尝试按对象相关外键集中的特定值对 Django 管理列表页面进行排序。
具体来说,在下面的代码中,我希望 ContentAdmin 视图显示按“Twitter Score”(名称为“Twitter”的 Score 对象)排序的所有内容对象的列表。
在 django 应用程序中,我有以下模型:
class Content(models.Model):
body = models.CharField(max_length=564)
title = models.CharField(max_length=64)
class Score(models.Model):
name = models.CharField(max_length=64)
score = models.IntegerField()
content = models.ForeignKey('Content')
在 admin.py 我有以下内容:
class ContentAdmin(admin.ModelAdmin):
list_display = ('title', 'show_twitter_score',)
def show_twitter_score(self, obj):
twitter_score = obj.score_set.get(name='Twitter')
return 'Twitter: ' + str(twitter_score.score)
目标:ContentAdmin 的管理面板显示按“Twitter”分数排序的内容对象
谢谢大家!