Issue #24 - Add the context_processors app to jingo.EXCLUDE_APPS.

This commit is contained in:
Berker Peksag
2013-04-23 02:18:57 +03:00
parent 327dd865b6
commit 15cb6d407a
3 changed files with 11 additions and 1 deletions

View File

@@ -1,6 +1,11 @@
CHANGES
=======
v0.6.2
------
* Add context_processors application to EXCLUDE_APPS.
v0.6.1
------

View File

@@ -87,9 +87,13 @@ The default is in ``jingo.EXCLUDE_APPS``::
EXCLUDE_APPS = (
'admin',
'admindocs',
'registration'
'registration',
'context_processors',
)
.. versionchanged:: 0.6.2
Added ``context_processors`` application.
If you want to configure the Jinja environment, use ``JINJA_CONFIG`` in
``settings.py``. It can be a dict or a function that returns a dict. ::

View File

@@ -19,6 +19,7 @@ EXCLUDE_APPS = (
'admin',
'admindocs',
'registration',
'context_processors',
)
log = logging.getLogger('jingo')