django 有自带的admin.我想修改我输入密码后进入的后台管理系统的首页.这么修改.想把默认显示数据库表名修改为中文
光阴似箭催人老,日月如移越少年。
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
To change the displayed table name to Chinese, you can define it as follows in the inner class Meta of the model class:
You can refer to the Meta option in Django Model