Issue #24 - Add the context_processors app to jingo.EXCLUDE_APPS.
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
CHANGES
|
||||
=======
|
||||
|
||||
v0.6.2
|
||||
------
|
||||
|
||||
* Add context_processors application to EXCLUDE_APPS.
|
||||
|
||||
v0.6.1
|
||||
------
|
||||
|
||||
|
||||
@@ -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. ::
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@ EXCLUDE_APPS = (
|
||||
'admin',
|
||||
'admindocs',
|
||||
'registration',
|
||||
'context_processors',
|
||||
)
|
||||
|
||||
log = logging.getLogger('jingo')
|
||||
|
||||
Reference in New Issue
Block a user