20 Apr
2005
20 Apr
'05
10:14 a.m.
Hello, if "data" is a tuple (or list), how can directly access it's contents using path expressions, like in: -- script "s": return context.t(data=("one", "two", "three")) -- template "t" <html><body> <span tal:replace="options/data/0"></span> </body></html> The above example give out a TypeError for the index... "options/data/0" is not correct. What should i set the path to?