gpt4 book ai didi

django - 如何更改 Django 管理中的搜索字段标签?

转载 作者:行者123 更新时间:2023-12-05 01:45:33 27 4
gpt4 key购买 nike

在 Django admin.py 中

class TableAdmin(admin.ModelAdmin):
search_fields = ["name", "description", "category"]
list_display = ["name", "description", "category"]

admin.site.register(Table, TableAdmin)

在这里,我们可以使用下面的代码更改list_display,标签名称,

name.short_description = "Product Name"

现在的问题是,如何更改搜索字段标签名称?

最佳答案

您可以覆盖 django 管理模板的 search_form.html 文件。

创建一个新的 html 文件 similar添加到它,并将其命名为 search_form.html:

{% load i18n static %}
{% if cl.search_fields %}
<div id="toolbar"><form id="changelist-search" method="get">
<div><!-- DIV needed for valid HTML -->
<label for="searchbar"><img src="{% static "admin/img/search.svg" %}" alt="Search" /></label>
<input type="text" size="40" name="{{ search_var }}" value="{{ cl.query }}" id="searchbar" autofocus />
<input type="submit" value="{% trans 'My Search' %}" />
{% if show_result_count %}
<span class="small quiet">{% blocktrans count counter=cl.result_count %}{{ counter }} result{% plural %}{{ counter }} results{% endblocktrans %} (<a href="?{% if cl.is_popup %}_popup=1{% endif %}">{% if cl.show_full_result_count %}{% blocktrans with full_result_count=cl.full_result_count %}{{ full_result_count }} total{% endblocktrans %}{% else %}{% trans "Show all" %}{% endif %}</a>)</span>
{% endif %}
{% for pair in cl.params.items %}
{% if pair.0 != search_var %}<input type="hidden" name="{{ pair.0 }}" value="{{ pair.1 }}"/>{% endif %}
{% endfor %}
</div>
</form></div>
{%endif %}

然后将其放入模板目录的管理文件夹中,例如:(模板目录)>admin>search_form.html

它应该用文本“我的搜索”覆盖搜索按钮的标签

关于django - 如何更改 Django 管理中的搜索字段标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41477962/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com