23 Mar
2000
23 Mar
'00
11:18 p.m.
On Thu, 23 Mar 2000, sathya wrote:
<for noOfTimes> <input type="text" name= ... </for> </form> The dtml-in tag only accepts lists and such
Use the handy dandy Python range operator (generates a list of ascending integers of a specified length): <dtml-in "_.range(noOfTimes)"> <input type="text" name="... </dtml-in> --RDM