user6216224
user6216224

Reputation:

Access AppConfig members

I want to make my application independent from the project and control branding over the AppConfig. I override the config in my project and every thing seems to work. But how can I access the verbose_name from code? It's not covered in the documentation.

Upvotes: 3

Views: 2893

Answers (1)

Andrey Shipilov
Andrey Shipilov

Reputation: 2014

From the docs:

>>> from django.apps import apps
>>> apps.get_app_config('admin').verbose_name
'Admin'

https://docs.djangoproject.com/en/1.10/ref/applications/

Upvotes: 6

Related Questions