如何在 Django 管理界面的更改列表页面上添加自定义字段标题名称?
我正在构建一个 django 站点,并在后端启用管理站点。我想更改各种模型字段的标题上显示的名称,而不实际更改字段的名称。有没有简单的方法可以做到这一点?我浏览了 django 网站,似乎找不到此信息。
有人知道这是否可以做到以及如何做到吗?
I'm building a django site with the admin site enabled on the backend. I want to change the names shown on the headers for the various model fields without actually changing the name of the fields. Is there an easy way to do this? I've browsed the django site and can't seem to locate this information.
Anyone know if this can be done and how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将 verbose_name 传递给字段定义
或简单地更改模型字段的显示名称
you can change the display name for a model field by passing
verbose_name
to the field definitionor simply