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