有没有一种优雅的方法可以在 Django 管理中为 M2M 字段设置 list_filter ?

发布于 2024-09-02 16:17:47 字数 160 浏览 7 评论 0原文

如果我有一个披萨模型和一个浇头模型,它们之间有 m2m,是否有一些快速优雅的方法可以为它们中的任何一个添加到管理列表页面,为包含特定浇头的所有比萨饼/包含的所有浇头添加列表过滤器在某个披萨里?

内置的 list_filter 不支持 m2m 字段,因此我正在寻找一些解决方法来允许这种过滤。

If I have a Pizza model and a Topping model, with m2m between them, is there some quick elegant way to add to the admin list page for either of them a list filter for all pizzas which contain a certain topping / all toppings that are contained in a certain pizza?

The built-in list_filter doesn't support m2m fields so I'm looking for some workaround to allow this sort of filtering.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那请放手 2024-09-09 16:17:47

Django 1.5+ 支持 m2m 字段:

class Post(models.Model):
    categories = models.ManyToManyField(Category,
                                        verbose_name=_("Categories"),
                                        blank=True,
                                        related_name="posts")

class PostAdmin(admin.ModelAdmin):
    list_filter = ['categories__title',]

Django 1.5+ supports m2m fields:

class Post(models.Model):
    categories = models.ManyToManyField(Category,
                                        verbose_name=_("Categories"),
                                        blank=True,
                                        related_name="posts")

class PostAdmin(admin.ModelAdmin):
    list_filter = ['categories__title',]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文