有什么办法可以改变 admin 中多对多字段的视图吗?
我的意思是我应该怎么做才能改变普通 ManyToMany 字段的视图:
看起来像这样:
PS。我在 google 中找到了该网站: https ://code.google.com/p/django-ajax-filtered-fields/ 但上次更新是在 2009 年,所以我相信还有其他方法可以做到这一点。
提前致谢
有什么办法可以改变 admin 中多对多字段的视图吗?
我的意思是我应该怎么做才能改变普通 ManyToMany 字段的视图:
看起来像这样:
PS。我在 google 中找到了该网站: https ://code.google.com/p/django-ajax-filtered-fields/ 但上次更新是在 2009 年,所以我相信还有其他方法可以做到这一点。
提前致谢
是的,使用filter_horizontal
ModelAdmin
选项:
class MyAdmin(admin.ModelAdmin):
...
filter_horizontal = ["my_m2m_field", ]