search

Home  >  Q&A  >  body text

python - Django后台管理输入密码后的首页如何更改

django 有自带的admin.我想修改我输入密码后进入的后台管理系统的首页.这么修改.
想把默认显示数据库表名修改为中文

大家讲道理大家讲道理2892 days ago356

reply all(1)I'll reply

  • 阿神

    阿神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

    reply
    0
  • Cancelreply