﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
3523	"Extend ""for"" tag to allow unpacking of lists"	Chris Beaven	Russell Keith-Magee	"As discussed here: http://groups.google.com/group/django-developers/browse_thread/thread/5c0de4476c12029f

Basically, rather than having to do this:
{{{
{% for post in posts %}
 {{ post.0 }} - {{ post.1 }}
{% endfor %}
}}}

We should be able to do this:
{{{
{% for name, description in posts %}
 {{ name }} - {{ description }}
{% endfor %}
}}}"		closed	Template system	dev		fixed	for loop	ferringb@…	Ready for checkin	1	0	0	0	0	0
