summaryrefslogtreecommitdiff
path: root/django/templatetags
Commit message (Expand)AuthorAgeFilesLines
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-1/+1
* Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak2023-01-181-5/+1
* Refs #32365 -- Removed support for pytz timezones per deprecation timeline.Mariusz Felisiak2023-01-171-26/+3
* Refs #32873 -- Removed settings.USE_L10N per deprecation timeline.Mariusz Felisiak2023-01-171-6/+3
* Used more augmented assignment statements.Nick Pope2022-10-311-1/+1
* Fixed #33631 -- Marked {% blocktranslate asvar %} result as HTML safe.cheng2022-07-141-2/+2
* Refs #32365 -- Removed internal uses of utils.timezone.utc alias.Carlton Gibson2022-03-241-2/+4
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-073-7/+12
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-075-127/+190
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-032-6/+9
* Avoided isinstance(…, Variable) calls in FilterExpression.resolve().Keryn Knight2022-01-071-0/+1
* Fixed #32365 -- Made zoneinfo the default timezone implementation.Carlton Gibson2021-09-161-3/+27
* Fixed #32919 -- Optimized lexing & parsing of templates.Keryn Knight2021-08-022-0/+4
* Refs #24121 -- Added __repr__() to AdminForm, BlockContext, BlockTranslateNod...saeedblanchette2021-06-101-0/+7
* Refs #24121 -- Added__repr__() to StaticNode.saeedblanchette2021-05-121-0/+5
* Fixed #18995 -- Made blocktranslate tag raise TemplateSyntaxError when plural...Jacob Walls2020-09-291-0/+7
* Refs #30585 -- Updated project templates and tests to use (block)translate tags.Mike Hansen2019-12-181-15/+15
* Fixed #30585 -- Added {% translate %} and {% blocktranslate %} template tags.Mike Hansen2019-12-181-7/+12
* Replaced loop with dictionary comprehension.Toivo Mattila2018-12-191-4/+1
* Replaced TOKEN_* constants by TokenType enums.Claude Paroz2018-05-101-5/+5
* Refs #27656 -- Removed "This will" prefix from djanog/templatetags/i18n.py do...Tim Graham2018-03-211-32/+27
* Fixed #28544 -- Made unlocalize template filter behave like {% localize off %...Claude Paroz2017-11-071-1/+1
* Avoided creating temporary lists for obtaining the first item.Sergey Fedoseev2017-07-311-1/+1
* Fixed #27882 -- Allowed {% cache %} to cache indefinitely.Bo Marchman2017-03-151-4/+5
* Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.Anton Samarchyan2017-02-173-12/+12
* Refs #27795 -- Removed force_text from the template layerClaude Paroz2017-02-071-3/+2
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-4/+4
* Refs #27546 -- Removed hardcoded class names in __repr__() methods.Mads Jensen2017-02-041-1/+1
* Refs #23919 -- Replaced six.reraise by raiseClaude Paroz2017-01-221-13/+13
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-3/+3
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-1/+2
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-182-3/+3
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-182-4/+0
* Refs #25484 -- Made non-staticfiles {% static %} tag quote its output.Tim Graham2016-12-191-2/+2
* Refs #25484 -- Removed incorrect unquoting in {% static %}.Tim Graham2016-12-191-2/+2
* Fixed #25484 -- Made {% static %} render escaped URLs.alix-2016-12-171-2/+5
* Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham2016-10-271-10/+5
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-082-5/+7
* Fixed #21221 -- Made form Media and static template tag use staticfiles if in...Johannes Hoppe2015-12-101-1/+10
* Refs #22306 -- Removed cycle/firstof template tags from "future".Tim Graham2015-09-231-66/+0
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-315-8/+0
* Fixed #24257 -- Corrected i18n handling of percent signs.Doug Beck2015-08-121-0/+6
* Fixed #21695 -- Added asvar option to blocktrans.Matthew Somerville2015-07-011-3/+24
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-5/+5
* Fixed #24230 -- Added translated language name for i18n template tag/filter.Tomáš Ehrlich2015-06-021-0/+8
* Removed cases of six.iter* wrapped in a list()Curtis Maloney2015-04-181-1/+1
* Fixed #24372 - Replaced TokenParser usage with traditional parsing.Preston Timmons2015-03-021-40/+49
* Set context.template instead of context.engine while rendering.Aymeric Augustin2015-02-191-1/+1
* Subclassed template.Node instead of Node for consistency.Nik Nyby2015-02-121-2/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-065-14/+14