summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-08-17 09:47:55 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:09 -0400
commit27b2321793c62fb2cbb00fd2830c9387a187a84f (patch)
tree232a06ccf67399b1c4a2dda1b65d7abaee843410 /docs
parent04ee4059d71dbc6aa029907e251360eaf00e11bb (diff)
Refs #24451 -- Removed comma-separated {% cycle %} syntax per deprecation timeline.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/templates/builtins.txt12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 1da27a18e6..abc14f0cd8 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -185,18 +185,6 @@ call to ``{% cycle %}`` doesn't specify ``silent``::
{% cycle 'row1' 'row2' as rowcolors silent %}
{% cycle rowcolors %}
-.. deprecated:: 1.9
-
- The ``{% cycle %}`` tag supports the much inferior old syntax from previous
- Django versions. You shouldn't use this in any new projects, but for the
- sake of the people who are still using it, here's what it looks like::
-
- {% cycle row1,row2,row3 %}
-
- In this syntax, each value gets interpreted as a literal string, and there's
- no way to specify variable values, literal commas, or spaces. Support for
- this syntax will be removed in Django 1.10.
-
.. templatetag:: debug
debug