Django 修复 Admin 复数

发布于 2024-08-28 06:14:30 字数 330 浏览 6 评论 0原文

如何在新的 dev django 版本中将管理站点上的某些模型名称从“类别”更改为“类别”? 在旧版本(没有管理站点和管理模型)中,您可以这样做; http://www.the-dig.com/ blog/post/customize-plural-name-django-admin/

但是 - 现在在我的基于 modeladmin 的类中设置 verbose_name_plural 不会执行任何操作。 有人遇到同样的问题吗?

How do I change some models name from "Categorys" to "Categories" on admin site in the new dev django version?
In the old version (whithout admin sites and admin models) you could just do this;
http://www.the-dig.com/blog/post/customize-plural-name-django-admin/

However - now setting verbose_name_plural inside my modeladmin based class does nothing.
Anyone encouter the same issue?

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

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

发布评论

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

评论(2

风苍溪 2024-09-04 06:14:30

好吧,看起来元类方法仍然有效。
因此,在模型中放置一个元类仍然可以解决问题:

class Category(models.Model):
    class Meta:
        verbose_name_plural = "categories"

请注意,我们在这里使用小写字母,因为 django 足够聪明,可以在需要时将其大写。

我发现在模型类中设置此选项与 admin.py 文件相比很奇怪。
这是开发文档中描述它的位置:
http://docs.djangoproject.com/en/ dev/ref/models/options/#verbose-name-plural

Well well, it seems like the Meta class approach still works.
So placing a meta class inside your model will still do the trick:

class Category(models.Model):
    class Meta:
        verbose_name_plural = "categories"

Note that we use the lower case here, as django is smart enough to capitalize it when we need it.

I find setting this option in model-class weird as opposed to the admin.py file.
Here is the location in the dev docs where it is described:
http://docs.djangoproject.com/en/dev/ref/models/options/#verbose-name-plural

著墨染雨君画夕 2024-09-04 06:14:30

为此,您需要为模型添加元类

class Category(models.Model):
    --- model field here ---
    class Meta: 
        verbose_name = "Category"
        verbose_name_plural = "Categories"

在 apps.py 中为模型管理员提供奖励

class CategoryConfig(AppConfig):
    name = "Category"
    verbose_name = "Categories"

for that you need to add meta classes for models

class Category(models.Model):
    --- model field here ---
    class Meta: 
        verbose_name = "Category"
        verbose_name_plural = "Categories"

Bonus for your models admin in apps.py

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