AppConfig Application Configuration - Configurable Attributes
AppConfig: Application Configuration objects store metadata for an application. Some attributes can be configured in AppConfig subclasses. Others are set by Django and read-only. AppConfig.name: Full Python path to the application, ex. 'django.contrib.admin'. AppConfig.name attribute defines which application the configuration applies to. It must be set in all AppConfig subclasses. It must be unique across a Django project. AppConfig.label: Short name for the application, ex. 'admin' This attribute allows relabeling an application when two applications have conflicting labels. It defaults to the last component of name. It should be a valid Python identifier. It must be unique across a Django project. AppConfig.verbose_name: Human Readable name for the Application, ex. “Administration”. This attribute defaults to label.title(). AppConfig.path: File System Path to the application directory, ex. '/usr/lib/pythonX.Y/dist-packages/django/contrib/adm...