Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将管理员中的 TabularInline 模型添加到 User 模型中。
我该怎么做这样的事情?因为我不负责注册?
我可以向用户模型添加内联吗?我可以重新注册吗?
您可以取消注册任何模型对象并根据您的自定义需求重新注册它
admin.site.unregister(User) admin.site.register(User, YourCustomAdmin)