django 有自带的admin.我想修改我输入密码后进入的后台管理系统的首页.这么修改.
想把默认显示数据库表名修改为中文
阿神2017-04-18 09:20:09
To change the displayed table name to Chinese, you can define it as follows in the inner class Meta of the model class:
class MyModel(models.Model):
class Meta:
verbose_name = u'中文名'
verbose_name_plural = u'中文名'
You can refer to the Meta option in Django Model