44 lines
1.5 KiB
Smarty
44 lines
1.5 KiB
Smarty
{*
|
|
* PrestaChamps
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Commercial License
|
|
* you can't distribute, modify or sell this code
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file
|
|
* If you need help please contact leo@prestachamps.com
|
|
*
|
|
* @author Mailchimp
|
|
* @copyright PrestaChamps
|
|
* @license commercial
|
|
*}
|
|
<div class="panel">
|
|
<h3>MailChimp Cart info</h3>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>{l s='ID' mod='mailchimppro'}</th>
|
|
<th>{l s='Customer' mod='mailchimppro'}</th>
|
|
<th>{l s='Order total' mod='mailchimppro'}</th>
|
|
<th>{l s='Products' mod='mailchimppro'}</th>
|
|
<th>{l s='Created at' mod='mailchimppro'}</th>
|
|
<th>{l s='Updated at' mod='mailchimppro'}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{$cart.id|escape:'htmlall':'UTF-8'}</td>
|
|
<td>{$cart.customer.email_address|escape:'htmlall':'UTF-8'}</td>
|
|
<td>{$cart.order_total|escape:'htmlall':'UTF-8'} {$cart.currency_code|escape:'htmlall':'UTF-8'}</td>
|
|
<td>
|
|
{include file='./entity_list/cart/line.tpl' lines=$cart.lines currency_code=$cart.currency_code}
|
|
</td>
|
|
<td>{$cart.created_at|escape:'htmlall':'UTF-8'}</td>
|
|
<td>{$cart.updated_at|escape:'htmlall':'UTF-8'}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |