I created \'frontend\' application using ./manage.py startproject frontend
\'frontend\'
./manage.py startproject frontend
But for some reason I just want to change the app name in the Dj
from django.apps import AppConfig class AccountConfig(AppConfig): name = 'app name' verbose_name = "new app name"
In Django 2 we can use verbose_name in apps.py but we have to specify the CLass Config in init.py
See related doc here