设置了中文语言 zh-hans后,django2默认页面是中文的。
看起来也不错哦。
创建django2超级管理员:
createsuperuser
创建管理员后,就可以登录后台了。
注册用户users表到后台管理中:在admin.py中注册。
from django.contrib import admin# Register your models here.# 注册用户 users 到后台中from .models import UserProfileclass UserProfileAdmin(admin.ModelAdmin): passadmin.site.register(UserProfile, UserProfileAdmin)