summaryrefslogtreecommitdiff
path: root/django/template
Commit message (Expand)AuthorAgeFilesLines
* Refs #24121 -- Added __repr__() to URLNode.Rohith PR2021-03-021-0/+9
* Refs #24121 -- Added __repr__() to FilterExpression, Lexer, Parser, and Token.David Smith2021-02-261-1/+14
* Fixed #32290 -- Fixed TemplateNotFound in {% include %} tag for relative path...Hasan Ramezani2021-01-271-4/+12
* Refs #25236 -- Removed {% ifequal %} and {% ifnotequal %} template tags per d...Mariusz Felisiak2021-01-141-77/+0
* Fixed #27827 -- Used "raise from" when raising InvalidTemplateLibrary excepti...Jacob Walls2020-12-281-1/+1
* Refs #15053 -- Clarified debug message when skipping templates to avoid recur...Daniel Hahler2020-11-211-1/+1
* Fixed #25791 -- Implement autoreload behaviour for cached template loader.Tom Forbes2020-11-052-0/+53
* Refs #25791 -- Added get_dirs() method to cached template loader.Tom Forbes2020-11-051-0/+5
* Fixed #20601 -- Allowed forcing format with thousand separators in floatforma...Jacob Walls2020-10-131-2/+17
* Fixed #32002 -- Added headers parameter to HttpResponse and subclasses.Tom Carrick2020-10-071-4/+4
* Bumped minimum isort version to 5.1.0.David Smith2020-07-302-1/+2
* Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne2020-05-112-7/+7
* Fixed #25236 -- Deprecated {% ifequal %} and {% ifnotequal %} template tags.Jon Dufresne2020-05-111-0/+12
* Refs #30573 -- Rephrased "Of Course" and "Obvious(ly)" in documentation and c...Adam Johnson2020-05-041-1/+1
* Fixed #31172 -- Added note to translators for yesno filter.Hasan Ramezani2020-03-171-0/+1
* Fixed #20995 -- Added support for iterables of template names to {% include %...Keshav Kumar2020-02-181-3/+7
* Fixed #31128 -- Fixed TemplateSyntaxError in simple_tag() and inclusion_tag()...Patrick Seebauer2020-01-021-1/+1
* Refs #30585 -- Updated project templates and tests to use (block)translate tags.Mike Hansen2019-12-181-2/+2
* Used Signature API instead of deprecated inspect.getcallargs().Baptiste Mispelon2019-12-101-1/+2
* Used full module import for inspect in template/base.py.Baptiste Mispelon2019-12-101-4/+4
* Fixed #30425 -- Handled jinja2.TemplateSyntaxError when rendering a template.Hasan Ramezani2019-11-271-7/+24
* Removed unnecessary numeric indexes in format strings.Jon Dufresne2019-11-191-1/+1
* Refs #29983 -- Added support for using pathlib.Path in all settings.Jon Dufresne2019-11-071-1/+1
* Fixed #30761 -- Prevented floatformat filter from returning a negative zero.Sky2019-10-311-2/+3
* Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani2019-10-291-3/+4
* Improved performance of django.template.base.Parser.Alex Gaynor2019-10-091-4/+6
* Fixed some typos in comments and docs.Min ho Kim2019-10-021-1/+1
* Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...ElizabethU2019-10-011-6/+4
* Removed some outdated backwards compatibility imports and misleading comments.Mads Jensen2019-09-244-10/+9
* Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak2019-09-102-3/+2
* Fixed #27486 -- Fixed Python 3.7 DeprecationWarning in intword and filesizefo...Jon Dufresne2019-06-111-1/+1
* Fixed #30453 -- Fixed crash of simple_tag() and inclusion_tag() when function...Batuhan Taşkaya2019-05-171-3/+3
* Removed unnecessary line in DebugLexer.tokenize().sanchjat2019-05-071-1/+0
* Fixed #20122 -- Made pluralize template filter return '' on invalid input.Tobias Kunze2019-05-031-5/+3
* Refs #20122 -- Corrected documentation of pluralize template filter.Tobias Kunze2019-05-031-2/+2
* Removed unnecessary assignments in various code.Jon Dufresne2019-04-241-2/+1
* Fixed #29791 -- Made Engine.render_to_string() honor autoescape.Nathan Gaberel2019-03-251-1/+1
* Refs #27753 -- Favored SafeString over SafeText.Tim Graham2019-02-061-2/+2
* Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope2019-02-061-2/+2
* Removed template_cache attribute from cached template loader.Tom Forbes2019-01-181-2/+0
* Fixed #30107 -- Removed unused dirs variable from cache template loader keys.Tim Graham2019-01-181-3/+2
* Used 4 space hanging indent for dictionaries.Tim Graham2019-01-021-9/+10
* Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev2018-09-281-2/+1
* Refs #29784 -- Switched to https:// links where available.Jon Dufresne2018-09-261-1/+1
* Refs #29784 -- Normalized Python docs links to omit the version.Jon Dufresne2018-09-251-1/+1
* Fixed #29654 -- Made text truncation an ellipsis character instead of three d...Claude Paroz2018-08-211-2/+2
* Fixed typos in comments and docs.luz.paz2018-08-012-3/+3
* Fixed #29617 -- Fixed Template crash if template_string is lazy.Dražen Odobašić2018-07-311-1/+1
* Simplified BaseContext.__iter__().Sergey Fedoseev2018-07-111-1/+1
* Removed unneded str() calls prior to mark_safe(); simplified mark_safe().Sergey Fedoseev2018-07-091-1/+1