<h2>Order Confirmation</h2>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<img src="images/spacer.gif" height="1" width="700"></td>
</tr>
<tr>
<td>{if $total_cart_items>0}
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td ><p>ABN: {$storeABN}</p>
<p><strong>{$storeBusinessName}</strong><br />
{$storeAddress} , {$storeState}<br />
{$storeCountry}<br /><br />
<strong>Email:</strong> {$storeEmailAddress}<strong><br />
Ph:</strong> {$storePhone}<strong><br />
Fax:</strong> {$storeFax}<br />
</p>
<p>Thank You For Your Order!</p>
</td>
</tr>
<tr>
<td height="19"><table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td width="150"><strong>Order Number</strong></td>
<td width="82%">{$order_number}</td>
</tr>
<tr>
<td width="150"><strong>Order Date</strong></td>
<td width="82%">{$order_date}</td>
</tr>
<tr>
<td><strong>Name</strong></td>
<td>{$customer_name}</td>
</tr>
<tr>
<td><strong>Company </strong></td>
<td>{$bunisess_name}</td>
</tr>
<tr>
<td><strong>Email Address </strong></td>
<td>{$email_address}</td>
</tr>
<tr>
<td><strong>Address </strong></td>
<td>{$address}</td>
</tr>
<tr>
<td><strong>City, State, Postcode</strong></td>
<td>{$city}, {$state}, {$postcode}</td>
</tr>
<tr>
<td><strong>Country </strong></td>
<td>{$country}</td>
</tr>
<tr>
<td><strong>Payment Method</strong></td>
<td>{$payment_method}</td>
</tr>
<tr>
<td><strong>Phone Number </strong></td>
<td>{$phone_number}</td>
</tr>
<tr>
<td><strong>Delivery instructions, comments or gift message</strong></td>
<td>{$order_instructions}</td>
</tr>
</table></td>
</tr>
<tr>
<td height="29"><table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#F3F3F3">
<tr>
<td width="69%" height="32" bgcolor="#CCCCCC"><strong>Item(s)</strong></td>
<td width="7%" bgcolor="#CCCCCC"><strong>Quantity</strong></td>
<td width="13%" bgcolor="#CCCCCC"><strong>Unit Price</strong></td>
<td width="11%" bgcolor="#CCCCCC"><strong>Sub-total</strong></td>
</tr>
{section name=cartItems loop=$cartItems}
<tr>
<td bgcolor="#FFFFFF">{$cartItems[cartItems].product_code} - {$cartItems[cartItems].product_name}</td>
<td bgcolor="#FFFFFF">{$cartItems[cartItems].product_qty}</td>
<td bgcolor="#FFFFFF">{$cartItems[cartItems].product_price}</td>
<td bgcolor="#FFFFFF">{$cartItems[cartItems].total}</td>
</tr>
{/section}
<tr>
<td colspan="2" rowspan="3" bgcolor="#FFFFFF"> </td>
<td bgcolor="#FFFFFF"><strong>Total</strong></td>
<td bgcolor="#FFFFFF">${$cartSubTotal|string_format:"%.2f"}</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><strong>Shipping</strong></td>
<td bgcolor="#FFFFFF">${$shippingTotal|string_format:"%.2f"}</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><strong>Grand Total</strong></td>
<td bgcolor="#FFFFFF">${$cartTotal|string_format:"%.2f"}</td>
</tr>
</table></td>
</tr>
<tr>
<td height="29"> </td>
</tr>
</table>
{section name=payment_options_available loop=$payment_options_available}
<table width="100%" border="0" cellpadding="3" cellspacing="0">
<tr>
<td bgcolor="#FFFFFF"><h3>Payment Instructions</h3>
</td>
<tr>
<td bgcolor="#FFFFFF"><p>{$payment_instructions}</p>
</td>
</tr>
</table>
{/section}
{else}
You have no items in your cart yet. <a href="{$site_url}">Click here</a> to continue shopping
{/if}
</td>
</tr>
</table>