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):
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'