From 05eeada23bd7065bf750e88c4c3125676e9ace92 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 27 Feb 2018 15:47:32 +0100 Subject: Allow no resizing of images (by explicit parameter in settings) --- example_project/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example_project/settings.py') diff --git a/example_project/settings.py b/example_project/settings.py index 7135f62f9..96eabacb9 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -15,7 +15,7 @@ TEST_VIEWS = True if "test" in sys.argv: sys.path.insert(0, '..') -IMAGE_MAX_SIZE = (1024, 768) +IMAGE_MAX_SIZE = (1024, 768) # put None if no resizing THUMB_MAX_SIZE = (300, 300) CACHE_SMALLTIMEOUT = 60 -- cgit v1.2.3