diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-05-14 01:53:57 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-05-14 01:53:57 +0000 |
| commit | 66ff7db38517065e9654dfc80020481911ef1a6d (patch) | |
| tree | 72c23b497571a1afa832d0aec33cb207af95357b /docs | |
| parent | 7215ffe8a43d55536ca46e37f9b5241f35f2fa5b (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
Diffstat (limited to 'docs')
| -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 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 %} |
