Django学习-后台管理相关操作

admin配置步骤:

注册自定义的模型类:

代码:

python 复制代码
from django.contrib import admin
from .models import Book, Author

# Register your models here.
admin.site.register(Book)
admin.site.register(Author)

模型管理器类(修改):

admin.py:

python 复制代码
from django.contrib import admin
from .models import Book, Author

#  Register your models here.
# admin.site.register(Book)
# admin.site.register(Author)


class BookManager(admin.ModelAdmin):
    # 列表页显示的字段
    list_display = ['id', 'title', 'pub', 'price', 'market_price', 'is_active']
    # 列表页可以点击进入编辑界面的字段
    list_display_links = ['id', 'title']
    # 列表页可以直接编辑的字段
    list_editable = ['price']
    # 列表页右侧增加搜索框
    search_fields = ['price']
    # 列表页右侧增加过滤器
    list_filter = ['is_active']

admin.site.register(Book, BookManager)
相关推荐
小白开始进步2 分钟前
OpenCV图像滤波:Python实战指南
人工智能·python·opencv
Aevget4 分钟前
Python开发利器PyCharm v2025.3全新发布——支持主动数据探索
开发语言·ide·python·pycharm
znhy_234 分钟前
day44打卡
python
子夜江寒7 分钟前
PyTorch:基于MNIST的手写数字识别
pytorch·python·深度学习
island13148 分钟前
PyTorch 2.0 核心技术深度解析torch.compile 从原理到实践
人工智能·pytorch·python
yaoh.wang15 分钟前
力扣(LeetCode) 119: 杨辉三角 II - 解法思路
数据结构·python·算法·leetcode·面试·职场和发展·跳槽
invicinble18 分钟前
arthas
开发语言·python
liliangcsdn19 分钟前
如何在jupyter-lab显示http链接的图片
python·jupyter
arron889929 分钟前
自训练yolo模型自主学习性能持续提升思路
学习·yolo·目标跟踪
lzjava202434 分钟前
Python中的模块和包
linux·开发语言·python