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
This commit is contained in:
Jacob Kaplan-Moss 2009-05-14 01:53:57 +00:00
parent 7215ffe8a4
commit 66ff7db385
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ will be displayed if the value has not changed::
{% for match in matches %} {% for match in matches %}
<div style="background-color: <div style="background-color:
{% ifchanged match.ballot_id %} {% ifchanged match.ballot_id %}
{% cycle red,blue %} {% cycle "red" "blue" %}
{% else %} {% else %}
grey grey
{% endifchanged %} {% endifchanged %}