摘要:
#encoding:utf-8 from django.contrib import admin from son10.models import * # Register your models here. class testadmin(admin.ModelAdmin): #设置要显示在列表中的字段 list_display = ['name','pwd'] #分... 阅读全文
摘要:
python manage .py makemigrations appname python manage.py migrate 阅读全文
摘要:
在settings中设置 LANGUAGE_CODE = ‘zh-Hans’ 阅读全文