update settings for single-timezone (and saner datetime-format)
authorTero Marttila <terom@fixme.fi>
Sun, 18 Aug 2013 23:06:29 +0300
changeset 46 24061881238b
parent 45 33b4a60ce759
child 47 35a8e63648c8
update settings for single-timezone (and saner datetime-format)
cmpuqrct/settings/base.py
--- a/cmpuqrct/settings/base.py	Sun Aug 18 20:37:54 2013 +0300
+++ b/cmpuqrct/settings/base.py	Sun Aug 18 23:06:29 2013 +0300
@@ -18,11 +18,14 @@
 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
 # although not all choices may be available on all operating systems.
 # In a Windows environment this must be set to your system time zone.
-TIME_ZONE = 'UTC'
+TIME_ZONE = 'Europe/London'
 
 # Language code for this installation. All choices can be found here:
 # http://www.i18nguy.com/unicode/language-identifiers.html
-LANGUAGE_CODE = 'en-us'
+LANGUAGE_CODE = 'en-uk'
+
+# Non-local-specifc defaults
+DATETIME_FORMAT = 'Y-m-d H:i:s O'
 
 SITE_ID = 1