[Zope] Dictionaries in DTML

Steve Spicklemire steve@spvi.com
Tue, 6 Mar 2001 09:51:23 -0500 (EST)


Hi John,

<dtml-in ... > wants a sequence type.. the 'mapping' is about the
elements of the sequence.

try:

<dtml-let foo="[{'a':'b', 'c':'d'}]">
<dtml-in foo mapping>
<dtml-var a>
</dtml-in>
</dtml-let>

take care,
-steve