summaryrefslogtreecommitdiff
path: root/django/template/context_processors.py
AgeCommit message (Collapse)Author
2020-07-30Bumped minimum isort version to 5.1.0.David Smith
Fixed inner imports per isort 5. isort 5.0.0 to 5.1.0 was unstable.
2017-04-26Replaced temporary lists used for passing arguments with iterables.Jon Dufresne
2017-02-17Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.Anton Samarchyan
2017-01-30Refs #23919 -- Assumed request COOKIES and META are strClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
The smart_* version should only be used when a lazy string should keep its lazy status.
2016-04-09Fixed #26145 -- Made debug context processor return queries for all databases.Mounir Messelmeni
2015-11-07Simplified dict initialization in two places.Dmitry Dygalo
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-02-08Simplified the lazy CSRF token implementation in csrf context processor.Alex Gaynor
This significantly improves performance on PyPy. The previous implementation would generate a new class on every single request, which is relatively slow.
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-28Moved context_processors from django.core to django.template.Aymeric Augustin