【发布时间】:2015-01-14 08:39:55
【问题描述】:
我使用./manage.py startproject frontend 创建了'frontend' 应用程序
但出于某种原因,我只想将 Django 管理中的应用名称更改为显示 'Your Home Page' 而不是 'frontend'。
怎么做?
更新: 这是更多细节:
#settings.py
INSTALLED_APPS = (
'frontend',
)
和
#frontend/models.py
class Newpage(models.Model):
#field here
class Oldpage(models.Model):
#field here
【问题讨论】: