How to change Django Admin Custom list field label

后端 未结 2 475
名媛妹妹
名媛妹妹 2021-02-11 14:54

How to change in_stock verbose_name ?

Models.py

class Book(models.Model):
 name = models.CharField(u\"Нэр\", max_length = 200)

 @property
 def in_stock(self):         


        
相关标签:
2条回答
  • 2021-02-11 15:13

    I guess you should use short_description attribute. Django-admin

    def in_stock(self):
      return self.stocks.count()
    in_stock.short_description = 'Your label here'
    
    0 讨论(0)
  • 2021-02-11 15:26

    change your model and verbose_name parametr to field. I change "author" label to "Author(s)"

    models.py

    class books(models.Model):
        title = models.CharField(max_length = 250)
        author= models.CharField(max_length = 250, verbose_name='Author(s)')
    

    or simply

    author      = models.CharField('Author(s)',max_length = 250)
    
    0 讨论(0)
提交回复
热议问题