summaryrefslogtreecommitdiffstats
path: root/appstore/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'appstore/settings.py')
-rw-r--r--appstore/settings.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/appstore/settings.py b/appstore/settings.py
index e3edabc..8e67698 100644
--- a/appstore/settings.py
+++ b/appstore/settings.py
@@ -96,6 +96,7 @@ INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
+ 'ordered_model',
'store',
)
@@ -153,3 +154,10 @@ MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = ''
+
+# Icon size (icons are resized to this size on upload)
+ICON_SIZE_X = 36
+ICON_SIZE_Y = 32
+# If the icon should be transformed to monochrome, with alpha channel, when uploaded or not
+ICON_DECOLOR = True
+