diff options
author | luxagraf <sng@luxagraf.net> | 2013-05-24 21:41:02 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2013-05-24 21:41:02 -0400 |
commit | 7ba10b77f38576b688d7833237e2ec3f36c3292a (patch) | |
tree | 2d651f34acc63fc83f6c76be1708fe9e4279d000 /config/settings/settings_dev.py | |
parent | 69173ab423b281b34972819b60a1b92372e2a145 (diff) |
changed backend code to validate location using only the point and prompt if no location exists
Diffstat (limited to 'config/settings/settings_dev.py')
-rw-r--r-- | config/settings/settings_dev.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config/settings/settings_dev.py b/config/settings/settings_dev.py index 010ac31..bb7c21b 100644 --- a/config/settings/settings_dev.py +++ b/config/settings/settings_dev.py @@ -29,7 +29,7 @@ SITE_URL = 'http://luxagraf.net/' GRAPPELLI_ADMIN_TITLE = 'Luxagraf Admin' USE_I18N = False USE_L10N = True -USE_TZ = True +USE_TZ = False #API key for Google Maps in Admin MAP_API = "google" @@ -39,6 +39,7 @@ GOOGLE_MAPS_API_KEY = MAP_API_KEY = 'ABQIAAAAEZ0Oz7LFDmdS1OBHm6HLgRQT5Lr-mnFT_29 FLICKR_API_KEY = '7b9d978a440c6ab65a545adc0aa0d693' FLICKR_USER_ID = '85322932@N00' +BASE_URL = "http://127.0.0.1:8000/" #path to the folder that holds the generated html files FLATFILES_ROOT = os.path.join(PROJ_ROOT, 'site/') #media and image URLs for the generated html files @@ -142,8 +143,8 @@ INSTALLED_APPS = ( 'templatetags', 'projects', 'guide', - 'pages' - + 'pages', + 'birds' ) DEVELOPMENT = True if DEVELOPMENT: |