On Thu, 2004-05-06 at 17:29, James Lance wrote:
> I actually did look at the Table plugin. Unless I missed something, that
> plugin doesn't actually create HTML table layout. It creates virtual tables.
Right, it formats the data into a structure which you then wrap your
HTML around, all without any EVAL_PERL:
<table>
[% FOREACH row = table.rows %]
<tr>
[% FOREACH item = row %]
<td>[% item %]</td>
[% END %]
</tr>
[% END %]
</table>
- Perrin
_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates