模型层表名自定义:
class Record(models.Model): content=models.CharField(max_length=32,db_column='record_content') class Meta: db_table="Record" db_column #自定义字段名 db_table #自定义表名
Django后台管理显示表名:设置__str__
Django后台管理设置app名显示成其他内容:
from django.apps import AppConfig import os default_app_config = 'primary_blog.PrimaryBlogConfig' VERBOSE_APP_NAME = u"博客管理" def get_current_app_name(_file): return os.path.split(os.path.dirname(_file))[-1] class PrimaryBlogConfig(AppConfig): name = get_current_app_name(__file__) verbose_name = VERBOSE_APP_NAME
未完待续...