diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-05-14 01:54:41 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-05-14 01:54:41 +0000 |
| commit | bcda65e991c33a3a6e1f053e58f14187dfe1a920 (patch) | |
| tree | e6ed3e74c10ebdf0f726fabd476739696219ff76 /docs/ref | |
| parent | 86c278f2a53bf37e5d3b6f0cc20a69b759b321c4 (diff) | |
[1.0.X] Fixed #11046: fixed a use of the deprecated cycle tag syntax in the template documentation. Backport of [10768] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10769 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 2b93bcd642..011359aae8 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -336,7 +336,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 %} |
