如何在不使用自定义 list_display 的情况下,在 Django 管理列中显示 FloatField 四舍五入到最接近的整数?
使用自定义 list_display 会很容易,但这会导致我失去根据该列的排序能力。
It would be easy with a custom list_display, but that would cause me to lose the sorting ability according to that column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档是这样说的:
因此,您应该定义函数来显示舍入值,但设置 admin_order_field 以保留排序功能。
The docs say this:
So you should define your function to display the rounded value, but set admin_order_field to preserve the ordering capability.