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.
我必须在具有多对多关系的两个模型的管理页面上显示多对多字段,并且我使用了这种非常有效的方法。
tags我必须在添加/编辑用户时显示一个字段。该字段已添加,但我失去了密码哈希的功能。所以现在,我必须按照这里UserAdmin的建议使用
tags
UserAdmin
实际上,我正在尝试这个:
class CustomUserAdmin(UserAdmin): form = UserForm
这不适用于现有表单,即tags根本不显示该字段。我需要改变什么?
尝试创建内联。内联允许您在管理面板中显示和自定义相关对象。