Django 更改管理页面标签“Auth”到“身份验证”

发布于 2024-10-20 19:01:49 字数 80 浏览 1 评论 0原文

如何将 Django 管理仪表板中的显示标签 Auth 更改为 Authentication

How can i change the display label Auth in the Django admin dashboard to Authentication?

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

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

发布评论

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

评论(2

三生池水覆流年 2024-10-27 19:01:49

目前还没有简单/优雅的方法来做到这一点。一段时间以来,可定制的应用程序标签一直是一个痛点。您可以 覆盖 admin/ index.html 并注入一些 javascript 代码来更改标签。请注意,您还可以将 admin.site.index_template 更改为 "admin/my_index.html" 之类的内容,然后可以使用 {% extends "admin/index .html" %} 保持干燥。

当然,管理中的其他区域也会出现“Auth”,例如“admin/app_index.html”、面包屑等...

There is currently no easy/elegant way to do this. Customisable app-labelling has been a sore point for some time. You can override admin/index.html and inject some javascript code to change the labelling. Note that you could also change admin.site.index_template to something like "admin/my_index.html", which can then use {% extends "admin/index.html" %} to keep things DRYer.

Of course there are other areas in the admin that "Auth" will appear also, such in "admin/app_index.html", the breadcrumbs, etc...

锦上情书 2024-10-27 19:01:49

我想如果你覆盖 admin/index.html 你可以在模板中硬编码逻辑而不是任何 javascript:

<caption><a href="{{ app.app_url }}" class="section">
        {% ifequal app.name "Auth" %}
                {% trans 'Authentication' %}
        {% else %}
                {% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
        {% endifequal %}
</a></caption>

I imagine if your overwriting admin/index.html you could hard code the logic in the template instead of any javascript:

<caption><a href="{{ app.app_url }}" class="section">
        {% ifequal app.name "Auth" %}
                {% trans 'Authentication' %}
        {% else %}
                {% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
        {% endifequal %}
</a></caption>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文