Help for this page

Select Code to Download


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