mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #10704 -- Resurrected documentation for {% else %} clause on {% ifchanged %}, lost during docs refactor. Thanks to Tarken for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10563 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -359,6 +359,19 @@ The 'ifchanged' block tag is used within a loop. It has two possible uses. | ||||
|             {% endifchanged %} | ||||
|         {% endfor %} | ||||
|  | ||||
| The ``ifchanged`` tag can also take an optional ``{% else %}`` clause that | ||||
| will be displayed if the value has not changed:: | ||||
|  | ||||
|         {% for match in matches %} | ||||
|             <div style="background-color: | ||||
|                 {% ifchanged match.ballot_id %} | ||||
|                     {% cycle red,blue %} | ||||
|                 {% else %} | ||||
|                     grey | ||||
|                 {% endifchanged %} | ||||
|             ">{{ match }}</div> | ||||
|         {% endfor %} | ||||
|  | ||||
| .. templatetag:: ifequal | ||||
|  | ||||
| ifequal | ||||
|   | ||||
		Reference in New Issue
	
	Block a user