创建一个后台管理员账号
#创建管理员账号
python manage.py createsuperuser
#用户名
Username:admin
#电子邮箱
Email address: admin@example.com
#密码
Password: **********
Password (again): *********
Superuser created successfully.
启动服务器
python manage.py runserver
打开浏览器
向管理页面中加入投票应用
问题 Question
对象需要被管理。
polls/admin.py
from django.contrib import admin
from .models import Question
admin.site.register(Question)
可以在该页面快速添加Question。