Files
nexus/wiki/concepts/Django-Admin.md
2026-04-17 08:38:12 +08:00

24 lines
599 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Django Admin"
type: concept
tags: [django, web, admin]
---
## Definition
Django Admin 是 Django 框架内置的管理后台模块,基于模型自动生成管理界面,支持 CRUD 操作、搜索、过滤等功能。
## Core Features
- 自动生成管理界面
- 支持自定义模型注册
- 搜索和过滤功能
- 内联关联模型
- 富文本编辑器集成
## Use Cases
- 内容管理系统后台
- 数据管理工具
- 内部管理系统
## Related Concepts
- [[Django]]Django Admin 是 Django 框架的一部分
- [[TinyMCE]]Django Admin 常用的富文本编辑器