>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