diff options
Diffstat (limited to 'example_project/settings.py')
-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/' |