summaryrefslogtreecommitdiff
path: root/django/template/backends/django.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+0
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-1/+1
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-19/+18
* Refs #32987 -- Refactored out get_template_tag_modules().Daniel Fairhead2021-10-201-10/+19
* Fixed #27827 -- Used "raise from" when raising InvalidTemplateLibrary excepti...Jacob Walls2020-12-281-1/+1
* Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak2019-09-101-1/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Replaced six.reraise by raiseClaude Paroz2017-01-221-3/+1
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
* Fixed #26306 -- Fixed memory leak in cached template loader.Alex Hill2016-03-161-3/+14
* Fixed #25469 -- Added autoescape option to DjangoTemplates backend.Aaron Elliot Ross2015-11-121-1/+2
* Removed support for passing a context to a generic Template.render().Tim Graham2015-09-231-32/+2
* Removed dirs parameter in template engine methods and related funtions.Tim Graham2015-09-231-3/+3
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-4/+4
* Fixed #17085, #24783 -- Refactored template library registration.Preston Timmons2015-05-211-0/+60
* Fixed #24119, #24120 -- Formalized debug integration for template backends.Preston Timmons2015-05-061-6/+24
* Deprecated TEMPLATE_DEBUG setting.Aymeric Augustin2015-02-151-1/+1
* Split DTL context creation into its own function.Aymeric Augustin2015-02-101-10/+2
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+1
* Deprecated passing a Context to a generic Template.render.Aymeric Augustin2015-01-121-2/+30
* Made context take priority over context processors.Aymeric Augustin2015-01-061-1/+7
* Supported multiple template engines in get_template and select_template.Aymeric Augustin2014-12-281-7/+15
* Added Django template backend.Aymeric Augustin2014-12-281-0/+41