// some changes on admin customer view
This commit is contained in:
@@ -121,67 +121,70 @@
|
||||
<div class="clear"></div>
|
||||
<div class="separation"></div>
|
||||
|
||||
|
||||
<h2>{l s='Messages'} ({count($messages)})</h2>
|
||||
{if count($messages)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%;">
|
||||
<tr>
|
||||
<th class="center">{l s='Status'}</th>
|
||||
<th class="center">{l s='Message'}</th>
|
||||
<th class="center">{l s='Sent on'}</th>
|
||||
</tr>
|
||||
{foreach $messages AS $message}
|
||||
<div style="width:50%;float:left;">
|
||||
<h2>{l s='Messages'} ({count($messages)})</h2>
|
||||
{if count($messages)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%;">
|
||||
<tr>
|
||||
<td>{$message['status']}</td>
|
||||
<td>
|
||||
<a href="index.php?tab=AdminCustomerThreads&id_customer_thread={$message.id_customer_thread}&viewcustomer_thread&token={getAdminToken tab='AdminCustomerThreads'}">
|
||||
{$message['message']}...
|
||||
</a>
|
||||
</td>
|
||||
<td>{$message['date_add']}</td>
|
||||
<th class="left">{l s='Status'}</th>
|
||||
<th class="left">{l s='Message'}</th>
|
||||
<th class="left">{l s='Sent on'}</th>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
<div class="clear"> </div>
|
||||
{else}
|
||||
{l s='%1$s %2$s has never contacted you' sprintf=[$customer->firstname, $customer->lastname]}
|
||||
{/if}
|
||||
{foreach $messages AS $message}
|
||||
<tr>
|
||||
<td class="left">{$message['status']}</td>
|
||||
<td class="left">
|
||||
<a href="index.php?tab=AdminCustomerThreads&id_customer_thread={$message.id_customer_thread}&viewcustomer_thread&token={getAdminToken tab='AdminCustomerThreads'}">
|
||||
{$message['message']}...
|
||||
</a>
|
||||
</td>
|
||||
<td class="left">{$message['date_add']}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
<div class="clear"> </div>
|
||||
{else}
|
||||
{l s='%1$s %2$s has never contacted you' sprintf=[$customer->firstname, $customer->lastname]}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div style="width:50%;float:left;">
|
||||
<div style="margin-left:15px;"
|
||||
<h2>{l s='Vouchers'} ({count($discounts)})</h2>
|
||||
{if count($discounts)}
|
||||
<table cellspacing="0" cellpadding="0" class="table">
|
||||
<tr>
|
||||
<th>{l s='ID'}</th>
|
||||
<th>{l s='Code'}</th>
|
||||
<th>{l s='Name'}</th>
|
||||
<th>{l s='Status'}</th>
|
||||
<th>{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $discounts AS $key => $discount}
|
||||
<tr {if $key %2}class="alt_row"{/if}>
|
||||
<td align="center">{$discount['id_cart_rule']}</td>
|
||||
<td>{$discount['code']}</td>
|
||||
<td>{$discount['name']}</td>
|
||||
<td align="center"><img src="../img/admin/{if $discount['active']}enabled.gif{else}disabled.gif{/if}" alt="{l s='Status'}" title="{l s='Status'}" /></td>
|
||||
<td align="center">
|
||||
<a href="?tab=AdminCartRules&id_cart_rule={$discount['id_cart_rule']}&addcart_rule&token={getAdminToken tab='AdminCartRules'}"><img src="../img/admin/edit.gif" /></a>
|
||||
<a href="?tab=AdminCartRules&id_cart_rule={$discount['id_cart_rule']}&deletecart_rule&token={getAdminToken tab='AdminCartRules'}"><img src="../img/admin/delete.gif" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{else}
|
||||
{l s='%1$s %2$s has no discount vouchers' sprintf=[$customer->firstname, $customer->lastname]}.
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{* display hook specified to this page : AdminCustomers *}
|
||||
<div>{hook h="displayAdminCustomers" id_customer=$customer->id}</div>
|
||||
|
||||
<div class="clear"> </div>
|
||||
|
||||
<h2>
|
||||
{l s='Groups'} ({count($groups)})
|
||||
<a href="{$current}&updatecustomer&id_customer={$customer->id}&token={$token}">
|
||||
<img src="../img/admin/edit.gif" />
|
||||
</a>
|
||||
</h2>
|
||||
{if $groups AND count($groups)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%;">
|
||||
<colgroup>
|
||||
<col width="10px">
|
||||
<col width="">
|
||||
<col width="70px">
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th height="39px" class="right">{l s='ID'}</th>
|
||||
<th class="center">{l s='Name'}</th>
|
||||
<th class="center">{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $groups AS $key => $group}
|
||||
<tr {if $key %2}class="alt_row"{/if} style="cursor: pointer" onclick="document.location = '?tab=AdminGroups&id_group={$group['id_group']}&viewgroup&token={getAdminToken tab='AdminGroups'}'">
|
||||
<td class="center">{$group['id_group']}</td>
|
||||
<td>{$group['name']}</td>
|
||||
<td align="center"><a href="?tab=AdminGroups&id_group={$group['id_group']}&viewgroup&token={getAdminToken tab='AdminGroups'}"><img src="../img/admin/details.gif" /></a></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{/if}
|
||||
<div class="clear"> </div>
|
||||
|
||||
|
||||
<div style="width:50%;float:left;">
|
||||
<h2>{l s='Orders'} ({count($orders)})</h2>
|
||||
{if $orders AND count($orders)}
|
||||
{assign var=count_ok value=count($orders_ok)}
|
||||
@@ -205,16 +208,16 @@
|
||||
<th class="left">{l s='Date'}</th>
|
||||
<th class="left">{l s='Payment: '}</th>
|
||||
<th class="left">{l s='State'}</th>
|
||||
<th class="left">{l s='Products:'}</th>
|
||||
<th class="left">{l s='Total spent'}</th>
|
||||
<th class="right">{l s='Products'}</th>
|
||||
<th class="right">{l s='Total spent'}</th>
|
||||
<th class="center">{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $orders_ok AS $key => $order}
|
||||
<tr {if $key %2}class="alt_row"{/if} style="cursor: pointer" onclick="document.location = '?tab=AdminOrders&id_order={$order['id_order']}&vieworder&token={getAdminToken tab='AdminOrders'}'">
|
||||
<td class="center">{$order['id_order']}</td>
|
||||
<td>{$order['date_add']}</td>
|
||||
<td>{$order['payment']}</td>
|
||||
<td>{$order['order_state']}</td>
|
||||
<td class="left">{$order['id_order']}</td>
|
||||
<td class="left">{$order['date_add']}</td>
|
||||
<td class="left">{$order['payment']}</td>
|
||||
<td class="left">{$order['order_state']}</td>
|
||||
<td align="right">{$order['nb_products']}</td>
|
||||
<td align="right">{$order['total_paid_real']}</td>
|
||||
<td align="center"><a href="?tab=AdminOrders&id_order={$order['id_order']}&vieworder&token={getAdminToken tab='AdminOrders'}"><img src="../img/admin/details.gif" /></a></td>
|
||||
@@ -226,7 +229,6 @@
|
||||
{assign var=count_ko value=count($orders_ko)}
|
||||
{if $count_ko}
|
||||
<div>
|
||||
<h3 style="color:red;font-weight:normal;">{l s='Invalid orders:'} {$count_ko}</h3>
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%;">
|
||||
<colgroup>
|
||||
<col width="10px">
|
||||
@@ -238,33 +240,70 @@
|
||||
<col width="52px">
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th height="39px" class="center">{l s='ID'}</th>
|
||||
<th class="center">{l s='Date'}</th>
|
||||
<th class="center">{l s='Payment: '}</th>
|
||||
<th class="center">{l s='State'}</th>
|
||||
<th class="center">{l s='Products:'}</th>
|
||||
<th class="center">{l s='Total spent'}</th>
|
||||
<th height="39px" class="left">{l s='ID'}</th>
|
||||
<th class="left">{l s='Date'}</th>
|
||||
<th class="left">{l s='Payment: '}</th>
|
||||
<th class="left">{l s='State'}</th>
|
||||
<th class="right">{l s='Products'}</th>
|
||||
<th class="right">{l s='Total spent'}</th>
|
||||
<th class="center">{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $orders_ko AS $key => $order}
|
||||
<tr {if $key %2}class="alt_row"{/if} style="cursor: pointer" onclick="document.location = '?tab=AdminOrders&id_order={$order['id_order']}&vieworder&token={getAdminToken tab='AdminOrders'}'">
|
||||
<td class="center">{$order['id_order']}</td>
|
||||
<td>{$order['date_add']}</td>
|
||||
<td>{$order['payment']}</td>
|
||||
<td>{$order['order_state']}</td>
|
||||
<td align="right">{$order['nb_products']}</td>
|
||||
<td class="left">{$order['id_order']}</td>
|
||||
<td class="left">{$order['date_add']}</td>
|
||||
<td class="left">{$order['payment']}</td>
|
||||
<td class="left">{$order['order_state']}</td>
|
||||
<td align="right">{$order['nb_products']}</td>
|
||||
<td align="right">{$order['total_paid_real']}</td>
|
||||
<td align="center"><a href="?tab=AdminOrders&id_order={$order['id_order']}&vieworder&token={getAdminToken tab='AdminOrders'}"><img src="../img/admin/details.gif" /></a></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
<h3 style="color:red;font-weight:normal;">{l s='Invalid orders:'} {$count_ko}</h3>
|
||||
</div>
|
||||
<div class="clear"> </div>
|
||||
{/if}
|
||||
{else}
|
||||
{l s='%1$s %2$s has not placed any orders yet' sprintf=[$customer->firstname, $customer->lastname]}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div style="float:left;width:50%">
|
||||
<div style="margin-left:15px;">
|
||||
<h2>{l s='Carts'} ({count($carts)})</h2>
|
||||
{if $carts AND count($carts)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%">
|
||||
<colgroup>
|
||||
<col width="50px">
|
||||
<col width="150px">
|
||||
<col width="">
|
||||
<col width="70px">
|
||||
<col width="50px">
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th height="39px" class="left">{l s='ID'}</th>
|
||||
<th class="left">{l s='Date'}</th>
|
||||
<th class="left">{l s='Carrier'}</th>
|
||||
<th class="right">{l s='Total'}</th>
|
||||
<th class="center">{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $carts AS $key => $cart}
|
||||
<tr {if $key %2}class="alt_row"{/if} style="cursor: pointer" onclick="document.location = '?tab=AdminCarts&id_cart={$cart['id_cart']}&viewcart&token={getAdminToken tab='AdminCarts'}'">
|
||||
<td class="left">{$cart['id_cart']}</td>
|
||||
<td class="left">{$cart['date_add']}</td>
|
||||
<td class="left">{$cart['name']}</td>
|
||||
<td align="right">{$cart['total_price']}</td>
|
||||
<td align="center"><a href="index.php?tab=AdminCarts&id_cart={$cart['id_cart']}&viewcart&token={getAdminToken tab='AdminCarts'}"><img src="../img/admin/details.gif" /></a></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{else}
|
||||
{l s='No cart is available'}.
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"> </div>
|
||||
{if $products AND count($products)}
|
||||
<div class="clear"> </div>
|
||||
<h2>{l s='Products:'} ({count($products)})</h2>
|
||||
@@ -292,113 +331,87 @@
|
||||
</table>
|
||||
{/if}
|
||||
<div class="clear"> </div>
|
||||
|
||||
<h2>{l s='Addresses'} ({count($addresses)})</h2>
|
||||
{if count($addresses)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%;">
|
||||
<colgroup>
|
||||
<col width="120px">
|
||||
<col width="120px">
|
||||
<col width="">
|
||||
<col width="100px">
|
||||
<col width="170px">
|
||||
<col width="70px">
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th height="39px">{l s='Company'}</th>
|
||||
<th>{l s='Name'}</th>
|
||||
<th>{l s='Address'}</th>
|
||||
<th>{l s='Country'}</th>
|
||||
<th>{l s='Phone number(s)'}</th>
|
||||
<th>{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $addresses AS $key => $address}
|
||||
<tr {if $key %2}class="alt_row"{/if}>
|
||||
<td>{if $address['company']}{$address['company']}{else}--{/if}</td>
|
||||
<td>{$address['firstname']} {$address['lastname']}</td>
|
||||
<td>{$address['address1']} {if $address['address2']}{$address['address2']}{/if} {$address['postcode']} {$address['city']}</td>
|
||||
<td>{$address['country']}</td>
|
||||
<td class="right">
|
||||
{if $address['phone']}
|
||||
{$address['phone']}
|
||||
{if $address['phone_mobile']}<br />{$address['phone_mobile']}{/if}
|
||||
{else}
|
||||
{if $address['phone_mobile']}<br />{$address['phone_mobile']}{else}--{/if}
|
||||
{/if}
|
||||
</td>
|
||||
<td align="center">
|
||||
<a href="?tab=AdminAddresses&id_address={$address['id_address']}&addaddress&token={getAdminToken tab='AdminAddresses'}"><img src="../img/admin/edit.gif" /></a>
|
||||
<a href="?tab=AdminAddresses&id_address={$address['id_address']}&deleteaddress&token={getAdminToken tab='AdminAddresses'}"><img src="../img/admin/delete.gif" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{else}
|
||||
{l s='%1$s %2$s has not registered any addresses yet' sprintf=[$customer->firstname, $customer->lastname]}
|
||||
{/if}
|
||||
|
||||
<div class="clear"> </div>
|
||||
<h2>{l s='Vouchers'} ({count($discounts)})</h2>
|
||||
{if count($discounts)}
|
||||
<table cellspacing="0" cellpadding="0" class="table">
|
||||
<tr>
|
||||
<th>{l s='ID'}</th>
|
||||
<th>{l s='Code'}</th>
|
||||
<th>{l s='Name'}</th>
|
||||
<th>{l s='Status'}</th>
|
||||
<th>{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $discounts AS $key => $discount}
|
||||
<tr {if $key %2}class="alt_row"{/if}>
|
||||
<td align="center">{$discount['id_cart_rule']}</td>
|
||||
<td>{$discount['code']}</td>
|
||||
<td>{$discount['name']}</td>
|
||||
<td align="center"><img src="../img/admin/{if $discount['active']}enabled.gif{else}disabled.gif{/if}" alt="{l s='Status'}" title="{l s='Status'}" /></td>
|
||||
<td align="center">
|
||||
<a href="?tab=AdminCartRules&id_cart_rule={$discount['id_cart_rule']}&addcart_rule&token={getAdminToken tab='AdminCartRules'}"><img src="../img/admin/edit.gif" /></a>
|
||||
<a href="?tab=AdminCartRules&id_cart_rule={$discount['id_cart_rule']}&deletecart_rule&token={getAdminToken tab='AdminCartRules'}"><img src="../img/admin/delete.gif" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{else}
|
||||
{l s='%1$s %2$s has no discount vouchers' sprintf=[$customer->firstname, $customer->lastname]}.
|
||||
{/if}
|
||||
<div class="clear"> </div>
|
||||
|
||||
<div>
|
||||
<h2>{l s='Carts'} ({count($carts)})</h2>
|
||||
{if $carts AND count($carts)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%">
|
||||
<colgroup>
|
||||
<col width="50px">
|
||||
<col width="150px">
|
||||
<col width="">
|
||||
<col width="70px">
|
||||
<col width="50px">
|
||||
</colgroup>
|
||||
|
||||
<div style="float:left;width:50%">
|
||||
<h2>{l s='Addresses'} ({count($addresses)})</h2>
|
||||
{if count($addresses)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%;">
|
||||
<colgroup>
|
||||
<col width="120px">
|
||||
<col width="120px">
|
||||
<col width="">
|
||||
<col width="100px">
|
||||
<col width="170px">
|
||||
<col width="70px">
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th height="39px" class="center">{l s='ID'}</th>
|
||||
<th class="center">{l s='Date'}</th>
|
||||
<th class="center">{l s='Carrier'}</th>
|
||||
<th class="center">{l s='Total'}</th>
|
||||
<th class="left" height="39px">{l s='Company'}</th>
|
||||
<th class="left">{l s='Name'}</th>
|
||||
<th class="left">{l s='Address'}</th>
|
||||
<th class="left">{l s='Country'}</th>
|
||||
<th class="right">{l s='Phone number(s)'}</th>
|
||||
<th class="center">{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $carts AS $key => $cart}
|
||||
<tr {if $key %2}class="alt_row"{/if} style="cursor: pointer" onclick="document.location = '?tab=AdminCarts&id_cart={$cart['id_cart']}&viewcart&token={getAdminToken tab='AdminCarts'}'">
|
||||
<td class="center">{$cart['id_cart']}</td>
|
||||
<td>{$cart['date_add']}</td>
|
||||
<td>{$cart['name']}</td>
|
||||
<td align="right">{$cart['total_price']}</td>
|
||||
<td align="center"><a href="index.php?tab=AdminCarts&id_cart={$cart['id_cart']}&viewcart&token={getAdminToken tab='AdminCarts'}"><img src="../img/admin/details.gif" /></a></td>
|
||||
{foreach $addresses AS $key => $address}
|
||||
<tr {if $key %2}class="alt_row"{/if}>
|
||||
<td class="left">{if $address['company']}{$address['company']}{else}--{/if}</td>
|
||||
<td class="left">{$address['firstname']} {$address['lastname']}</td>
|
||||
<td class="left">{$address['address1']} {if $address['address2']}{$address['address2']}{/if} {$address['postcode']} {$address['city']}</td>
|
||||
<td class="left">{$address['country']}</td>
|
||||
<td class="right">
|
||||
{if $address['phone']}
|
||||
{$address['phone']}
|
||||
{if $address['phone_mobile']}<br />{$address['phone_mobile']}{/if}
|
||||
{else}
|
||||
{if $address['phone_mobile']}<br />{$address['phone_mobile']}{else}--{/if}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="center">
|
||||
<a href="?tab=AdminAddresses&id_address={$address['id_address']}&addaddress&token={getAdminToken tab='AdminAddresses'}"><img src="../img/admin/edit.gif" /></a>
|
||||
<a href="?tab=AdminAddresses&id_address={$address['id_address']}&deleteaddress&token={getAdminToken tab='AdminAddresses'}"><img src="../img/admin/delete.gif" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{else}
|
||||
{l s='No cart is available'}.
|
||||
{l s='%1$s %2$s has not registered any addresses yet' sprintf=[$customer->firstname, $customer->lastname]}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
|
||||
<div style="float:left;width:50%">
|
||||
<div style="margin-left:15px">
|
||||
<h2>
|
||||
{l s='Groups'} ({count($groups)})
|
||||
<a href="{$current}&updatecustomer&id_customer={$customer->id}&token={$token}">
|
||||
<img src="../img/admin/edit.gif" />
|
||||
</a>
|
||||
</h2>
|
||||
{if $groups AND count($groups)}
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%;">
|
||||
<colgroup>
|
||||
<col width="10px">
|
||||
<col width="">
|
||||
<col width="70px">
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th height="39px" class="left">{l s='ID'}</th>
|
||||
<th class="left">{l s='Name'}</th>
|
||||
<th class="center">{l s='Actions'}</th>
|
||||
</tr>
|
||||
{foreach $groups AS $key => $group}
|
||||
<tr {if $key %2}class="alt_row"{/if} style="cursor: pointer" onclick="document.location = '?tab=AdminGroups&id_group={$group['id_group']}&viewgroup&token={getAdminToken tab='AdminGroups'}'">
|
||||
<td class="left">{$group['id_group']}</td>
|
||||
<td class="left">{$group['name']}</td>
|
||||
<td class="center"><a href="?tab=AdminGroups&id_group={$group['id_group']}&viewgroup&token={getAdminToken tab='AdminGroups'}"><img src="../img/admin/details.gif" /></a></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clear"> </div>
|
||||
|
||||
{if count($interested)}
|
||||
<div>
|
||||
<h2>{l s='Products:'} ({count($interested)})</h2>
|
||||
@@ -418,9 +431,9 @@
|
||||
</table>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
|
||||
<div class="clear"> </div>
|
||||
|
||||
<div style="float:left;width:50%">
|
||||
{* Last connections *}
|
||||
{if count($connections)}
|
||||
<h2>{l s='Last connections'}</h2>
|
||||
@@ -433,42 +446,46 @@
|
||||
<col width="150px">
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th height="39px;">{l s='Date'}</th>
|
||||
<th>{l s='Pages viewed'}</th>
|
||||
<th>{l s='Total time'}</th>
|
||||
<th>{l s='Origin'}</th>
|
||||
<th>{l s='IP Address'}</th>
|
||||
<th class="left" height="39px;">{l s='Date'}</th>
|
||||
<th class="left">{l s='Pages viewed'}</th>
|
||||
<th class="left">{l s='Total time'}</th>
|
||||
<th class="left">{l s='Origin'}</th>
|
||||
<th class="left">{l s='IP Address'}</th>
|
||||
</tr>
|
||||
{foreach $connections as $connection}
|
||||
<tr>
|
||||
<td>{$connection['date_add']}</td>
|
||||
<td>{$connection['pages']}</td>
|
||||
<td>{$connection['time']}</td>
|
||||
<td>{$connection['http_referer']}</td>
|
||||
<td>{$connection['ipaddress']}</td>
|
||||
<td class="left">{$connection['date_add']}</td>
|
||||
<td class="left">{$connection['pages']}</td>
|
||||
<td class="left">{$connection['time']}</td>
|
||||
<td class="left">{$connection['http_referer']}</td>
|
||||
<td class="left">{$connection['ipaddress']}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
<div class="clear"> </div>
|
||||
{/if}
|
||||
|
||||
{if count($referrers)}
|
||||
<h2>{l s='Referrers'}</h2>
|
||||
<table cellspacing="0" cellpadding="0" class="table">
|
||||
<tr>
|
||||
<th style="width: 200px">{l s='Date'}</th>
|
||||
<th style="width: 200px">{l s='Name'}</th>
|
||||
{if $shop_is_feature_active}<th style="width: 200px">{l s='Shop'}</th>{/if}
|
||||
</tr>
|
||||
{foreach $referrers as $referrer}
|
||||
<tr>
|
||||
<td>{$referrer['date_add']}</td>
|
||||
<td>{$referrer['name']}</td>
|
||||
{if $shop_is_feature_active}<td>{$referrer['shop_name']}</td>{/if}
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{/if}
|
||||
</div>
|
||||
<div style="float:left;width:50%">
|
||||
<div style="margin-left:15px">
|
||||
{if count($referrers)}
|
||||
<h2>{l s='Referrers'}</h2>
|
||||
<table cellspacing="0" cellpadding="0" class="table" style="width:100%">
|
||||
<tr>
|
||||
<th class="left">{l s='Date'}</th>
|
||||
<th class="left">{l s='Name'}</th>
|
||||
{if $shop_is_feature_active}<th class="left">{l s='Shop'}</th>{/if}
|
||||
</tr>
|
||||
{foreach $referrers as $referrer}
|
||||
<tr>
|
||||
<td class="left">{$referrer['date_add']}</td>
|
||||
<td class="left">{$referrer['name']}</td>
|
||||
{if $shop_is_feature_active}<td class="left">{$referrer['shop_name']}</td>{/if}
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
</div>
|
||||
<div class="clear"> </div>
|
||||
<div class="clear"> </div>
|
||||
Reference in New Issue
Block a user