Application Name in Admin¶
By default Django uses the application label as application’s verbose name. It is also possible to customize the application’s verbose name by assigning a value to the verbose_name of the applications config (AppConfig class).
To achieve this, modify the application’s admin module and assign value to the verbose_name attribute of the AppConfig class:
from django.apps import AppConfig
class MypresciousConfig(AppConfig):
#...
verbose_name = "Bilbo's Adventures"
#...