diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-05-09 17:49:16 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 08:44:18 +0200 |
commit | 43c017bc8dd00372f26728130b00b1cd9196fb10 (patch) | |
tree | 3c5fab3ad0c77f861ee46e18d14e7d6f848226af /example_project | |
parent | bf3810a26abe3c53fc11c4afe52e865cd5dbcc54 (diff) | |
download | Ishtar-43c017bc8dd00372f26728130b00b1cd9196fb10.tar.bz2 Ishtar-43c017bc8dd00372f26728130b00b1cd9196fb10.zip |
Standardize related field item for imagee collections (refs #4076)
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index d5efd2891..241e330f9 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -15,8 +15,8 @@ TEST_VIEWS = True if "test" in sys.argv: sys.path.insert(0, '..') -IMAGE_MAX_SIZE = (1024, 768) # put None if no resizing -THUMB_MAX_SIZE = (300, 300) +IMAGE_MAX_SIZE = (1280, 960) # put None if no resizing +THUMB_MAX_SIZE = (600, 600) CACHE_SMALLTIMEOUT = 60 CACHE_TIMEOUT = 3600 |