Robert Egert wrote:
>    [% data=form.field.my_choice %]
>    [% USE table(data, rows=3) %]

How about:
    [% USE table(form.fields, rows=3) %]

Then iterate through each of the rows/cols to get at the fields.

    [% FOREACH row IN table.rows;
         FOREACH field IN row;
           # ...
         END;
       END
    %]

HTH
A


_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to