﻿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
9070	the value of parse_until will be overwritten when using a block in a loop of {%include%}	ledil <leonardo@…>	nobody	"Ive tried the columnize tag (http://code.djangoproject.com/wiki/ColumnizeTag) in my template. Everything works if I use it in one template file:

{{{
#mytemplate.html

{% load columnize %}
{% for item in items %}
{%columnize 13%}
<img src=""{{item.src}}""/>
{%endcolumnize%}
{% endfor %}
}}}

But the problem is when I put the stuff in the {%for%}-loop in an external template file like this:

{{{
#myinternalloop.html
{% load columnize %}
{% columnize 13%}
<img src=""{{item.src}}""/>
{% endcolumnize%}

#mytemplate.html

{% for item in items %}
{% include ""myinternalloop.html"" %}
{% endfor %}
}}}

I've tried to debug and it seems that ""parse_until"" seems to lose {% endcolumnize %} and this results in that columnize will never start again when traversing a new item. It will continue there where it stops on the previous item. (__init__.py of ColumnizeNode will not be called)"		closed	Template system	0.96		invalid			Unreviewed	0	0	0	0	0	0
