diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-25 17:35:32 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-08-25 17:35:32 +0200 |
commit | 2bae28290b1802d27a560da184476b83c711c5a1 (patch) | |
tree | 54218f760a4955d071f934a54811a2be9778894e /example_project | |
parent | 9658cb19f4a6066eb652e0e9ec04758053a5d67a (diff) | |
download | Ishtar-2bae28290b1802d27a560da184476b83c711c5a1.tar.bz2 Ishtar-2bae28290b1802d27a560da184476b83c711c5a1.zip |
Add images to finds (refs #1314)
* an abstract model class has been defined to manage image and thumbnail
with resizing on the fly
* max size for images and thumbnails are set in project settings
* new field have been added to Find model to save images and thumbnails
* form and wizard of Find have been changed
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 6b2d1e2c6..718c6c31b 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -9,6 +9,9 @@ DEBUG_TOOLBAR = False TEMPLATE_DEBUG = DEBUG SQL_DEBUG = False +IMAGE_MAX_SIZE = (1024, 768) +THUMB_MAX_SIZE = (300, 300) + ROOT_PATH = os.path.abspath(os.path.curdir) + os.path.sep STATIC_URL = '/static/' STATIC_ROOT = ROOT_PATH + 'static/' |