3

django-filer(或easy_thumbnails?)生成的图像太少了,我很难识别预览图像。如何在管理概览中增加预览/缩略图大小?

在此处输入图像描述

4

2 回答 2

2

不幸的是,从当前版本(2017-03-02 发布的 1.2.7)开始,无法配置管理中显示的缩略图大小。

作为临时解决方法,您可以覆盖项目中的https://github.com/divio/django-filer/blob/1.2.7/filer/templates/admin/filer/folder/directory_table.html模板并替换所有出现的file.icons.48file.icons.64. 如果您想要不同的尺寸,您还必须设置FILER_ADMIN_ICON_SIZES设置(默认为('16', '32', '48', '64').

这有一个缺点,您必须检查是否需要为每个新版本的 django-filer 更改覆盖的模板。

非常感谢添加此功能的拉取请求。

于 2017-04-06T09:14:59.703 回答
0

在 Django Filer 1.3.0 (2017-11-02) 中:

如果将 alle 更改file.icons.48file.icons.64它只会更改加载图像的大小。

要更改图像的显示大小,您需要更改https://github.com/divio/django-filer/blob/develop/filer/static/filer/css/admin_filer.css

.filebrowser .navigator-table .column-icon{width:25像素;padding-top:0 !important;padding-bottom:0 !important}

.filebrowser .navigator-table .column-icon img{width:25像素;height:auto}

48px64px相应。

于 2018-03-04T16:11:15.530 回答