Skip to content

Commit

Permalink
More details for TEMPLATE_LOADERS
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavi committed Aug 3, 2014
1 parent bbb77ce commit 00dbb4b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 00dbb4b

Please sign in to comment.