django-mongodbforms icon indicating copy to clipboard operation
django-mongodbforms copied to clipboard

verbose_name_plural can't define in document meta

Open guominglei opened this issue 9 years ago • 0 comments

@property
def verbose_name_plural(self):
    if "verbose_name_plural" in self._meta:
        self._verbose_name_plural = self._meta.get("verbose_name_plural")
    else:
        self._verbose_name_plural = self._verbose_name
    return self._verbose_name_plural

guominglei avatar Aug 12 '16 07:08 guominglei