Django 管理员是否提供模型的分组编辑?
例如,我有一个名为 Person 的模型,它有一个名为“isAthlete”的布尔字段。我希望能够为其中 50 条人员记录勾选 True,然后点击提交,而不必进入每个人员模型记录并进行更改。是否有简单的或已经提供的方法在 Django 中进行设置?
For instance, I have a model called Person, and it has a bool field called 'isAthlete'. I would like to be able to check off True for 50 of these Person records, and then hit submit, without having to go into each Person model record and make the change. Is there an easy or already provided way to set this up in Django?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 django 管理操作来执行此操作,http://docs。 djangoproject.com/en/dev/ref/contrib/admin/actions/
you can do this using django admin actions, http://docs.djangoproject.com/en/dev/ref/contrib/admin/actions/