有一个关于字段verbose_name
:How to stop auto-capitalization of verbose_name in django
当在管理索引页面中列出应用程序的可用模型时,Django总是将模型的verbose_name_plural
的第一个字母大写并将其用作模型的名称。
以下是django.contrib.admin.sites.py的代码:
model_dict = {
'name': capfirst(model._meta.verbose_name_plural),
'perms': perms,
}
但请考虑以下screenshot,我想显示“vCenters”而不是“VCenters”。
我可以移除capfirst
,并明确地将其他模型“verbose_name_plural
大写,以使其有效。”
但我必须更改django的源代码,它似乎不是Django的错误。有没有更好的解决方案?
答案 0 :(得分:0)
这并不容易......
@register.filter(is_safe=True)
@stringfilter
def lowerfirst_if_starts_with_v(value):
"""Lowercase the first character of the value."""
return value and value[0] =='v' and value[0].lower() + value[1:]
{%load my_special_thing%}
<th scope="row"><a href="{{ model.admin_url }}"> \
{{ model.name|lowerfirst_if_starts_with_v }}</a></th>
并完成了