askbot template loader is broken - breaks admin view; disable in dev_ike.py

This commit is contained in:
ichuang
2012-08-10 09:36:11 -04:00
parent c0a4ff3717
commit dade6dd182

View File

@@ -21,3 +21,4 @@ MITX_FEATURES['ACCESS_REQUIRE_STAFF_FOR_COURSE'] = True # require that user be
INSTALLED_APPS = tuple([ app for app in INSTALLED_APPS if not app.startswith('debug_toolbar') ])
MIDDLEWARE_CLASSES = tuple([ mcl for mcl in MIDDLEWARE_CLASSES if not mcl.startswith('debug_toolbar') ])
TEMPLATE_LOADERS = tuple([ app for app in TEMPLATE_LOADERS if not app.startswith('askbot') ])