此图像出现问题 http://i.imgur.com/oExvXVu.png
我希望 VendorProfile 名称而不是 VendorProfile 对象出现在框中。我在 VendorProfile 中为 PurchaseOrder 使用外键关系。这是我在models.py中的代码:
class PurchaseOrder(models.Model):
product = models.CharField(max_length=256)
vendor = models.ForeignKey('VendorProfile')
class VendorProfile(models.Model):
name = models.CharField(max_length=256)
address = models.CharField(max_length=512)
city = models.CharField(max_length=256)
这是我在 admin.py 中的代码:
class PurchaseOrderAdmin(admin.ModelAdmin):
fields = ['product', 'dollar_amount', 'purchase_date','vendor', 'notes']
list_display = ('product','vendor', 'price', 'purchase_date', 'confirmed', 'get_po_number', 'notes')
那么如何让它在两个字段和 list_display 中显示 VendorProfile 的“名称”?