- or download this
[=== header ===]
<table>
...
<tr><td>['product']</td><td>['quantity']</td><td>$['price']</td></tr>
[=== footer ===]
</table>
- or download this
print $tr->render(
'row', { product=>$prod, quantity=>$quant, price=>$price } );
- or download this
for (@groups) {
# ... manipulate data ...
...
$tr->render('details', \%detail_data);
}
}
- or download this
if ($department eq 'Technology') {
print $tr->render(
...
print $tr->render(
'include_header', { header => $tr2->render('default') } );
}