Django 在管理更改列表中进行多项选择
我们的产品模型可以有多个营销活动。我们的客户经常更改这些营销活动,并且通常针对多种产品。因此,我们现在需要的似乎是我们需要在产品模型的更改列表上显示一个多选小部件,我们的客户可以在其中轻松更改活动。
对此有什么想法吗?也许还有另一种方式来实现这种 UI 交互?
谢谢,
Our product model can have multiple campaigns. Our customers change these campaigns frequently and generally on multiple products. So what we need right now seems that we need to show a multiple select widget on a change-list of Product model where our customers can easily change the campaigns.
Any idea on this? Maybe another way to achieve this kind of UI interaction?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有一个产品模型,
您可以对管理员的 Modeladmin 进行子类化以显示产品的列表显示,或者您可以为产品创建一个自定义模型表单,您可以在产品的管理员中调用该模型
say you have a product model
you can subclass the admin's Modeladmin to show a list display for the products or you can do a custom modelform for the product which you can call in the product's admin