work on admin interface, fix bugs

This commit is contained in:
bkfox
2016-10-28 12:18:12 +02:00
parent 28597e470c
commit 45268cd699
8 changed files with 138 additions and 24 deletions

View File

@ -17,7 +17,7 @@ USE_L10N = True
USE_TZ = True
LANGUAGE_CODE = os.environ.get('LANG') or 'en_US'
TIME_ZONE = os.environ.get('TZ') or 'Europe/Brussels'
TIME_ZONE = 'UTC' # os.environ.get('TZ') or 'Europe/Brussels'
try:
import locale

View File

@ -45,3 +45,4 @@ if settings.DEBUG:
)
urlpatterns.append(url(r'', include(wagtail_urls)))