fulcrm_shoppingcart/fulcrm_shoppingcart_transaction_item.tpl.php

7 lines
591 B
PHP
Raw Normal View History

2016-03-27 22:35:01 +01:00
<tr>
<td><!-- <span class="pull-right"><a class="btn btn-xs btn-danger" title="Remove from cart" href="<?php /* print fulcrm_shoppingcart_remove_url( $item[ 'id' ] ); */ ?>"><span class="glyphicon glyphicon-trash"></span></a></span>--> <?php print nl2br( check_plain( $item[ 'name' ] ) ); ?></td>
<td class="text-right"><?php print check_plain( $item[ '_price' ][ 'format_item_net' ] ); ?></td>
<td class="text-right"><?php print check_plain( $item[ 'quantity' ] ); ?></td>
<td class="text-right"><?php print check_plain( $item[ '_price' ][ 'format_total' ] ); ?></td>
</tr>