如何在 Django Admin 中设置另一个内联标题?

发布于 2024-10-14 03:00:22 字数 101 浏览 3 评论 0原文

我需要将 inline title 更改为模型中 Meta 类的 verbose_name 之外的其他内容。有一个属性可以实现这一点吗?

I need to change the inline title to something else other than the verbose_name of the class Meta in the model. Is there an attribute to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流云如水 2024-10-21 03:00:22

如文档所述,您需要设置 InlineModelAdmin 子类的值:

InlineModelAdmin.verbose_name -
覆盖模型内部 Meta 类中的 verbose_name。

InlineModelAdmin.verbose_name_plural -
覆盖模型内部 Meta 类中的 verbose_name_plural。

在此示例中,我们使用“电话”而不是标题“设备”:

class DeviceInline(admin.TabularInline):
    model = Device
    verbose_name = "Phone"
    verbose_name_plural = "My Phones"

As documented, you need to set the values of your InlineModelAdmin subclass:

InlineModelAdmin.verbose_name -
An override to the verbose_name found in the model’s inner Meta class.

InlineModelAdmin.verbose_name_plural -
An override to the verbose_name_plural found in the model’s inner Meta class.

In this example, instead of the title 'Device' we use 'Phone':

class DeviceInline(admin.TabularInline):
    model = Device
    verbose_name = "Phone"
    verbose_name_plural = "My Phones"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文