在我的admin.py中,我使用’active’和’country’进行过滤,这是使用我的SomethingAdmin类中的以下代码行完成的….
list_filter = ['active','countryid']
正如您所看到的,在我的管理列表视图中显示countryid并不漂亮,如何将其更改为更友好的名称,比如说’Country’?
谢谢.
更新:
下面似乎工作:
incentiveid = models.ForeignKey(Incentive,verbose_name="Incentive",null=True,db_column='incentiveID',blank=True)
最佳答案
原文链接:https://www.f2er.com/python/439468.html