diff options
Diffstat (limited to 'bitbake/lib/toaster/toastermain')
-rw-r--r-- | bitbake/lib/toaster/toastermain/settings.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py index b76218b959..679035e887 100644 --- a/bitbake/lib/toaster/toastermain/settings.py +++ b/bitbake/lib/toaster/toastermain/settings.py | |||
@@ -133,6 +133,15 @@ TEMPLATE_DIRS = ( | |||
133 | # Don't forget to use absolute paths, not relative paths. | 133 | # Don't forget to use absolute paths, not relative paths. |
134 | ) | 134 | ) |
135 | 135 | ||
136 | TEMPLATE_CONTEXT_PROCESSORS = ('django.contrib.auth.context_processors.auth', | ||
137 | 'django.core.context_processors.debug', | ||
138 | 'django.core.context_processors.i18n', | ||
139 | 'django.core.context_processors.media', | ||
140 | 'django.core.context_processors.static', | ||
141 | 'django.core.context_processors.tz', | ||
142 | 'django.contrib.messages.context_processors.messages', | ||
143 | "django.core.context_processors.request") | ||
144 | |||
136 | INSTALLED_APPS = ( | 145 | INSTALLED_APPS = ( |
137 | #'django.contrib.auth', | 146 | #'django.contrib.auth', |
138 | #'django.contrib.contenttypes', | 147 | #'django.contrib.contenttypes', |
@@ -144,6 +153,7 @@ INSTALLED_APPS = ( | |||
144 | # 'django.contrib.admin', | 153 | # 'django.contrib.admin', |
145 | # Uncomment the next line to enable admin documentation: | 154 | # Uncomment the next line to enable admin documentation: |
146 | # 'django.contrib.admindocs', | 155 | # 'django.contrib.admindocs', |
156 | 'django.contrib.humanize', | ||
147 | 'orm', | 157 | 'orm', |
148 | 'toastermain', | 158 | 'toastermain', |
149 | 'toastergui', | 159 | 'toastergui', |