5.1.django-admin
创建管理员账号
$ python manage.py createsuperuser
修改管理页面语言及时区
hello_django/settings.py
...
LANGUAGE_CODE = 'zh-hans'
TIME_ZONE = 'Asia/Shanghai'
USE_TZ = False # 若为True,django在数据库存储过程中,就会使用UTC的时间
...
将应用注册到管理界面
apps/users/admin.py
from django.contrib import admin
from users.models import UserProfile
class UserProfileAdmin(admin.ModelAdmin):
pass
admin.site.register(UserProfile, UserProfileAdmin)
Last updated
Was this helpful?