﻿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
431	Templates should support multiple level of lookups	lucky@…	Adrian Holovaty	"Let's say I have a dictionary with strings as keys and lists as values, like:
{{{
'dictionary': {'key1': [0, 0],
               'key2': [0.25, 0.005076142131979695],
               'key3': [0, 0],
               'key4': [0, 0]}
}}}
When I pass that to a template, I would like to access the values of the lists from within the templates, like:
{{{
{{ dictionary.key1.0 }} and {{ dictionary.key3.1 }}
}}}
Additionally, it would be nice to extend {{{for}}} for that:
{{{
{% for key, val in dictionary %} ... {% endfor %}
}}}
I hope you understand what I try to explain."	enhancement	closed	Template system		normal	invalid			Unreviewed	0	0	0	0	0	0
