From e63e9e389eda9888f30ea52a116d68188a87aaa9 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 8 Jan 2017 19:43:17 +0000 Subject: [PATCH] Shrinking the size of the thumbnails as they were huge even on my hidpi screen --- src/documents/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/admin.py b/src/documents/admin.py index e21abfb87..8724236a8 100644 --- a/src/documents/admin.py +++ b/src/documents/admin.py @@ -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 )