~offspring-committers/offspring/trunk

« back to all changes in this revision

Viewing changes to lib/offspring/web/settings.py

  • Committer: Mike Heald
  • Date: 2013-05-17 14:42:13 UTC
  • mfrom: (161.1.1 offspring-django-1.4)
  • Revision ID: mike.heald@canonical.com-20130517144213-o121b9bj0scnxp8t
Merge of lp:~mike-powerthroughwords/offspring/offspring-django-1.4-mods [r=timrc]

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
# List of callables that know how to import templates from various sources.
55
55
TEMPLATE_LOADERS = (
56
 
    'django.template.loaders.filesystem.load_template_source',
57
 
    'django.template.loaders.app_directories.load_template_source',
 
56
    'django.template.loaders.filesystem.Loader',
 
57
    'django.template.loaders.app_directories.Loader',
58
58
)
59
59
 
60
60
MIDDLEWARE_CLASSES = (
62
62
    'django.middleware.csrf.CsrfViewMiddleware',
63
63
    'django.contrib.sessions.middleware.SessionMiddleware',
64
64
    'django.contrib.auth.middleware.AuthenticationMiddleware',
 
65
    'django.contrib.messages.middleware.MessageMiddleware',
65
66
    'offspring.web.middleware.LoginRequiredMiddleware',
66
67
    'django_group_access.middleware.DjangoGroupAccessMiddleware',
67
68
    'djangodblog.DBLogMiddleware',