[Zope] List of objects

Dieter Maurer dieter@handshake.de
Thu, 29 Mar 2001 20:18:54 +0200 (CEST)


Dimitris Andrakakis writes:
 > I trying to make a list of objects in a method, to use
 > in a dtml-in. Something simple like:
 > 
 > <dtml-in ['Jim', 'Nick', 'John']>

   <dtml-in expr="['Jim', 'Nick', 'John']">


I recommend you read either the Zope book or

  URL:http://www.dieter.handshake.de/pyprojects/zope/book/chap3.html


The syntax you have used is wrong along several dimensions.


Dieter