モデル ダッシュボードの右側に表示されるフィルターにフィルター処理された結果を与える Django Admin でフィルターを追加する方法。
より明確に:
class County (models.Model):
status = models.CharField(max_length = 255, blank = True)
name = models.CharField(max_length = 255, blank = True)
class County_info (models.Model):
county = models.ForeignKey(County)
city = models.CharField(max_length = 255, blank = True)
state = models.CharField(max_length = 255, blank = True)
......
......
私のadim.pyでは、ステータスが「Production」であるフィールド「county」のモデル「County_info」のフィルターを表示する必要があります。
list_filter = ['county__name', ] # will Show all data in that table. I need onlt the data which has status= 'production'
これどうやってするの ?