18 lines
906 B
PHP
18 lines
906 B
PHP
<!-- @todo Translation required -->
|
|
<table class="cart_contents" border="0">
|
|
<tr>
|
|
<td colspan="3" class="title"><b><?php echo HTML::anchor(sprintf('product/view/%s',$item->product->id),$item->product->product_translate->find()->name); ?></b></td>
|
|
<td class="icon"><?php echo HTML::image($mediapath->uri(array('file'=>'img/edit-delete.png')),array('alt'=>_('Remove'))); ?></td>
|
|
<td rowspan="4" class="price_box"><?php echo $price_box; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td><td>Pricing Structure:</td><td colspan="2"><b><?php echo $item->product->display('price_type'); ?></b></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td><td>Invoice Frequency:</td><td colspan="2"><b><?php echo $item->display('recurr_schedule'); ?> (<?php echo $price_recurring; ?>)</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td><td>Current Service Period:</td><td><b><?php printf('%s -> %s',$service_start,$service_end); ?></b></td>
|
|
</tr>
|
|
</table>
|