[Zope] Using DTML - I'm too stupid

Oliver Thuns Oliver Thuns" <oliver.thuns@gmx.de
Sat, 10 Apr 1999 17:36:20 +0100


>Python:
>print T(None, {'t': 'abc', 'w': 'DEF'})
>
>DTML:
><!--#var t-->
><!--#var w-->

Why can I not use dictionaries within dictonaries?

Python:
print T(None, {'t': 'abc', 'w': {'A': 'DEF'}})

DTML:
<!--#var t-->
<!--#var w['A']-->

How could I use n-dimensional structures?

Oliver