From 00dbb4bbacd324b9995400323363fa51dcdfc888 Mon Sep 17 00:00:00 2001 From: Laville Augustin Date: Sun, 3 Aug 2014 23:18:55 +0200 Subject: [PATCH] More details for TEMPLATE_LOADERS --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index aa0cb10..40cab5b 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,16 @@ You need to use the `django.template.loaders.eggs.Loader` template loader if you At the end of your `settings.py` : +```python +TEMPLATE_LOADERS = ( + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader', + 'django.template.loaders.eggs.Loader', +) +``` + +or + ```python TEMPLATE_LOADERS += ( 'django.template.loaders.eggs.Loader',