summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-05-14 01:53:57 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-05-14 01:53:57 +0000
commit66ff7db38517065e9654dfc80020481911ef1a6d (patch)
tree72c23b497571a1afa832d0aec33cb207af95357b
parent7215ffe8a43d55536ca46e37f9b5241f35f2fa5b (diff)
Fixed #11046: fixed a use of the deprecated cycle tag syntax in the template documentation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10768 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index e06d28db33..a4acfbb115 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -365,7 +365,7 @@ will be displayed if the value has not changed::
{% for match in matches %}
<div style="background-color:
{% ifchanged match.ballot_id %}
- {% cycle red,blue %}
+ {% cycle "red" "blue" %}
{% else %}
grey
{% endifchanged %}