index
:
django.git
fix-31295
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
template
/
engine.py
Age
Commit message (
Expand
)
Author
2025-08-14
Fixed #36410 -- Added support for Template Partials to the Django Template La...
farhan
2024-01-26
Applied Black's 2024 stable style.
Mariusz Felisiak
2022-04-19
Fixed #33639 -- Enabled cached template loader in development.
Carlton Gibson
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2021-09-27
Refs #32355 -- Used @functools.lru_cache as a straight decorator.
Mariusz Felisiak
2021-06-01
Refs #24121 -- Added __repr__() to Engine
abhiabhi94
2019-09-24
Removed some outdated backwards compatibility imports and misleading comments.
Mads Jensen
2019-03-25
Fixed #29791 -- Made Engine.render_to_string() honor autoescape.
Nathan Gaberel
2018-09-28
Refs #28909 -- Simplifed code using unpacking generalizations.
Sergey Fedoseev
2017-03-31
Fixed #27359 -- Made Engine.get_default() return the first DjangoTemplates en...
Carlton Gibson
2017-02-17
Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.
Anton Samarchyan
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Stopped using django.utils.lru_cache().
Aymeric Augustin
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-17
Refs #15053 -- Removed support for non-recursive template loading.
Tim Graham
2016-09-03
Fixed #25788 -- Enabled the cached template loader if debug is False.
Tim Graham
2015-11-12
Fixed #25469 -- Added autoescape option to DjangoTemplates backend.
Aaron Elliot Ross
2015-09-24
Added django.template.engine.Engine.render_to_string() docstring.
Tim Graham
2015-09-23
Removed template.loader.BaseLoader per deprecation timeline.
Tim Graham
2015-09-23
Removed dictionary and context_instance parameters for render functions.
Tim Graham
2015-09-23
Removed dirs parameter in template engine methods and related funtions.
Tim Graham
2015-09-23
Refs #24022 -- Removed the ssi tag per deprecation timeline.
Tim Graham
2015-06-24
Renamed RemovedInDjangoXYWarnings for new roadmap.
Tim Graham
2015-05-21
Fixed #17085, #24783 -- Refactored template library registration.
Preston Timmons
2015-05-06
Moved engine-related exceptions to django.template.exceptions.
Preston Timmons
2015-04-22
Fixed #15053 -- Enabled recursive template loading.
Preston Timmons
2015-03-20
Cleaned up the template debug implementation.
Preston Timmons
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-04
Fixed #24235 -- Removed is_usable attribute from template loaders.
Preston Timmons
2015-01-07
Exposed Engine in the django.template namespace.
Aymeric Augustin
2015-01-06
Added comments to remove Engine.render_to_string in Django 2.0.
Aymeric Augustin
2014-12-28
Raised an error when allowed_include_roots is a string.
Aymeric Augustin
2014-12-28
Supported multiple template engines in render_to_string.
Aymeric Augustin
2014-12-28
Removed extraneous arguments in Engine.from_string.
Aymeric Augustin
2014-12-28
Looked up the default template engine in the list of all engines.
Aymeric Augustin
2014-12-28
Passed a reference to the current engine when instantiating Template.
Aymeric Augustin
2014-12-28
Renamed get_template_from_string to from_string.
Aymeric Augustin
2014-12-28
Simplified handling of a default value.
Aymeric Augustin
2014-11-23
Encapsulated TEMPLATE_DEBUG in Engine.
Aymeric Augustin
2014-11-23
Encapsulated TEMPLATE_CONTEXT_PROCESSORS in Engine.
Aymeric Augustin
2014-11-23
Moved make_origin into the Engine class.
Aymeric Augustin
2014-11-23
Move compile_string into the Engine class.
Aymeric Augustin
2014-11-23
Removed dependency of template loaders on Django settings.
Aymeric Augustin
2014-11-23
Moved template loaders management in Engine.
Aymeric Augustin
2014-11-23
Removed unused API get_template_loaders.
Aymeric Augustin
2014-11-23
Introduced a template engine class.
Aymeric Augustin