gpt4 book ai didi

Django 管理和列宽通过 list_display

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

我在 Django >= 1.6 文档中阅读:

"The field names in list_display will also appear as CSS classes in the HTML output, in the form of column- on each element. This can be used to set column widths in a CSS file."

好的。但是,怎么办?

class bollaAdmin(admin.ModelAdmin):
ordering = ['num']
list_display = ('num|width=15', 'Vendemmia','Cultivar', 'Provenienza' , 'netto', 'grado','montegradi')

最佳答案

这是来 self 的一位管理员的包含属性 headline 的列的 HTML 片段:

<th scope="col" class="sortable column-headline">
<div class="text"><a href="?o=2.4.-5">Headline</a></div>
<div class="clear"></div>
</th>

你可以像这样在 CSS 中设置它的宽度:

th.column-headline {
width: 10000000px;
}

关于Django 管理和列宽通过 list_display,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25184342/

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