1、创建超级管理员
python manage.py createsuperuser
2、注册模型
admin.py
from django.contrib import admin from .models import Publisher,Author,Books admin.register(Publisher) admin.register(Author) admin.register(Books)