在 Django Admin 中禁止关于 on_delete=CASCADE 的警告
Suppress warning about on_delete=CASCADE in Django Admin
我有一些外键可以使用 on_delete=CASCADE
.
来验证用户
如果有人删除用户,Django 会显示此警告。
有没有办法避免这个警告?
如果我可以单独为每个 ForeignKey 避免它,那就太好了。
如果你想为每个外键避免它,最简单的方法是覆盖默认值 django/contrib/admin/templates/admin/delete_confirmation.html template by adding a custom delete_confirmation.html
template in your own project structure, there is documentation on doing this here。
我有一些外键可以使用 on_delete=CASCADE
.
如果有人删除用户,Django 会显示此警告。
有没有办法避免这个警告?
如果我可以单独为每个 ForeignKey 避免它,那就太好了。
如果你想为每个外键避免它,最简单的方法是覆盖默认值 django/contrib/admin/templates/admin/delete_confirmation.html template by adding a custom delete_confirmation.html
template in your own project structure, there is documentation on doing this here。