I created the 'frontend'
application using ./manage.py startproject frontend
But for some reason, I just want to change the application name in the Django admin to display 'Your Home Page'
instead of 'frontend'
.
How to do it?
Update: Here is a little more detail:
#settings.py INSTALLED_APPS = ( 'frontend', )
and
#frontend/models.py class Newpage(models.Model):
user4173776
source share