在 django admin 中的同一行中显示两个字段时出现问题
我遇到了在同一行中显示两个字段的奇怪问题。根据 django 文档,为此我只需要将两个字段包装在一个元组中。例如,假设我有两个字段 A 和 B,那么我可以做的是
fields= (('A','B'),'C'.....)
但是它显示以下错误,
MyModel.fields
引用字段 '('A', '表单中缺少 B')'
。是django版本的原因吗?这真的很奇怪
I am having this weird problem of displaying two fields in the same line. According to django docs, for that I just need to wrap the two fields in a tuple. For eg, lets say I have two fields A and B, so what I can do is
fields= (('A','B'),'C'.....)
However it is showing the following error,
MyModel.fields
refers to field '('A', 'B')'
that is missing from the form. Is it because of the version of django? This is really weird
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论