Shrinking the size of the thumbnails as they were huge even on my hidpi screen

This commit is contained in:
Daniel Quinn 2017-01-08 19:43:17 +00:00
parent c646cd4977
commit e63e9e389e

View File

@ -64,7 +64,7 @@ class DocumentAdmin(admin.ModelAdmin):
png_img = self._html_tag(
"img",
src="/fetch/thumb/{}".format(obj.id),
width=275,
width=180,
alt="thumbnail",
title=obj.file_name
)