It's the classic way to describe Modules in Django Admin, and it works great!
at bookshelf/apps.py
from django.apps import AppConfig
class BOOKConfig(AppConfig):
name = 'bookshelf'
verbose_name = "Your Book"
at bookshelf/__init__.py
:
default_app_config = 'bookshelf.apps.BOOKConfig'
BUT when you want to override titles of external modules (e.g. like packages from https://djangopackages.org/), what's the right way to override the default name at this sections and the items inside that?