Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: HTML::Template - Two columns?

by TheoPetersen (Priest)
on Jul 04, 2001 at 00:37 UTC ( [id://93672]=note: print w/replies, xml ) Need Help??


in reply to HTML::Template - Two columns?

I did this using nested loops, but that means you'll need to transform your array into rows of columns as described in other replies.

My code received a single array of products and turned it into rows of three product elements each. It works thusly:

my @rows; while (@products) { push @rows, { 'loop_products' => [splice @products, 0, 3], }; } $template_body->param( loop_row => \@rows, );
Then in your template, you loop through both arrays:
<TMPL_LOOP NAME=loop_row> <TMPL_LOOP NAME=loop_products> Display one product here. </TMPL_LOOP> </TMPL_LOOP>
Works fine if your columns flow across the row. Enjoy :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://93672]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (8)
As of 2024-04-25 11:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found