Django:列表中的外键值显示admin

时间:2013-01-02 22:22:07

标签: python django django-admin

我正在尝试在管理列表视图中显示外键“公司名称”。但是,列表视图只显示公司的(无)。我做错了什么?

admin.py

class CampaignAdmin(admin.ModelAdmin):
    #fields = ['name', 'Company_name', 'active', 'modified', 'created']
    list_display = ['name', 'related_company', 'active', 'modified', 'created']
    list_filter = ['active']
    search_fields = ['name']
    sortable_field_name = "name"
    autocomplete_lookup_fields = {
        'name': ['name'],
        }

    def related_company(self, obj):
        return '%s'%(obj.Company.name)
    related_company.short_description = 'Company'


admin.site.register(Campaign, CampaignAdmin)

model.py

class Company(models.Model):
    companyid = models.CharField(max_length=255, primary_key=True, db_column='companyID')
    name = models.CharField(max_length=105)
    logourl = models.CharField(max_length=255, db_column='logoURL')
    website = models.CharField(max_length=255, blank=True)
    active = HibernateBooleanField(default=False)
    created = models.DateTimeField()
    modified = models.DateTimeField(null=True, blank=True)

    class Meta:
        db_table = u'company'
        ordering = ['name']

    @staticmethod
    def autocomplete_search_fields():
        return ("id__iexact", "name__icontains",)

    def __unicode__(self):
        return self.name


class Campaign(models.Model):
    campaignid = models.CharField(max_length=255, primary_key=True, db_column='campaignID')
    name = models.CharField(max_length=105)
    active = HibernateBooleanField(default=False)
    created = models.DateTimeField()
    modified = models.DateTimeField(null=True, blank=True)
    companyid = models.ForeignKey(Company, null=True, db_column='companyID', blank=True)

    class Meta:
        db_table = u'campaign'


    def __unicode__(self):
        return self.name

2 个答案:

答案 0 :(得分:23)

您的Campaign模型没有Company属性 - ForeignKey是字段companyid。您需要将功能更改为

def related_company(self, obj):
    return obj.companyid.name
related_company.short_description = 'Company'

由于公司对象的__unicode__()方法无论如何返回名称,您可能无论如何都不需要自定义函数 - 我认为您可以将外键字段直接放在显示列表中:

list_display = ['name', 'companyid', 'active', 'modified', 'created']

答案 1 :(得分:0)

当您以这种方式链接到ForeignKey对象时要考虑的另一个特性是在函数上设置$output[$key] = ( sanitize_text_field( $input[$key] ) == $input[$key] ) ? $input[$key] : $output[$key]; // <-- your issue is probably here

这将使您可以返回HTML并将其呈现为列表视图中的可用链接。

相关问题