I created 'frontend'
application using ./manage.py startproject frontend
.
But for some reason I just want to change the app name in the Django admin to display 'Your Home Page'
instead of 'frontend'
.
How to do that?
Update: Here is the little more detail:
# "settings.py"
INSTALLED_APPS = (
'frontend',
)
And:
# "frontend/models.py"
class Newpage(models.Model):
# field here
class Oldpage(models.Model):
#field here
1.Try to add app_label to your model that will be registered in Admin.
UPDATE: 2. Steps to rename app(folders):