You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
715 B
PHTML
31 lines
715 B
PHTML
9 years ago
|
<?php print theme( 'fulcrm_shoppingcart_transaction_mailshots', array( 'transaction' => $transaction ) ); ?>
|
||
|
|
||
|
<table class="table">
|
||
|
<caption>Your order</caption>
|
||
|
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Item</th>
|
||
|
<th>Price</th>
|
||
|
<th>Quantity</th>
|
||
|
<th>Total</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
|
||
|
<?php print theme( 'fulcrm_shoppingcart_transaction_items', array( 'items' => $transaction[ 'lineitems' ] ) ); ?>
|
||
|
|
||
|
</tbody>
|
||
|
|
||
|
<tfoot>
|
||
|
<tr>
|
||
|
<th colspan="3">
|
||
|
Total
|
||
|
</th>
|
||
|
<th>
|
||
|
<?php print $transaction[ '_price' ][ 'format_total' ]; ?>
|
||
|
</th>
|
||
|
</tr>
|
||
|
</tfoot>
|
||
|
</table>
|