summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-12 21:34:40 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-18 22:12:40 +0200
commit14ef92fa9e87a77cd3642235387e6f683048046b (patch)
tree5570548f8b6e32fb3ececb32a75a3aac8a0973b0 /docs/ref
parent2abf417c815c20f41c0868d6f66520b32347106e (diff)
Refs #33864 -- Removed length_is template filter per deprecation timeline.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/templates/builtins.txt18
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 4798663bf0..e0e06dafe8 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -2161,24 +2161,6 @@ If ``value`` is ``['a', 'b', 'c', 'd']`` or ``"abcd"``, the output will be
The filter returns ``0`` for an undefined variable.
-.. templatefilter:: length_is
-
-``length_is``
--------------
-
-.. deprecated:: 4.2
-
-Returns ``True`` if the value's length is the argument, or ``False`` otherwise.
-
-For example:
-
-.. code-block:: html+django
-
- {{ value|length_is:"4" }}
-
-If ``value`` is ``['a', 'b', 'c', 'd']`` or ``"abcd"``, the output will be
-``True``.
-
.. templatefilter:: linebreaks
``linebreaks``