- | {l s='Company'} |
+ {l s='Company'} |
{l s='Name'} |
{l s='Address'} |
{l s='Country'} |
@@ -276,7 +307,7 @@
{$address['firstname']} {$address['lastname']} |
{$address['address1']} {if $address['address2']}{$address['address2']}{/if} {$address['postcode']} {$address['city']} |
{$address['country']} |
-
+ |
{if $address['phone']}
{$address['phone']}
{if $address['phone_mobile']} {$address['phone_mobile']}{/if}
@@ -324,23 +355,30 @@
{/if}
-
+
{l s='Carts'} ({count($carts)})
{if $carts AND count($carts)}
-
+
+
+
+
+
+
+
+
- | {l s='ID'} |
+ {l s='ID'} |
{l s='Date'} |
- {l s='Total'} |
{l s='Carrier'} |
+ {l s='Total'} |
{l s='Actions'} |
{foreach $carts AS $key => $cart}
| {$cart['id_cart']} |
{$cart['date_add']} |
- {$cart['total_price']} |
{$cart['name']} |
+ {$cart['total_price']} |
 |
{/foreach}
@@ -370,13 +408,20 @@
{* Last connections *}
{if count($connections)}
{l s='Last connections'}
-
+
+
+
+
+
+
+
+
- | {l s='Date'} |
- {l s='Pages viewed'} |
- {l s='Total time'} |
- {l s='Origin'} |
- {l s='IP Address'} |
+ {l s='Date'} |
+ {l s='Pages viewed'} |
+ {l s='Total time'} |
+ {l s='Origin'} |
+ {l s='IP Address'} |
{foreach $connections as $connection}
@@ -407,7 +452,7 @@
{/foreach}
-
{/if}
{/block}
-
+
+
diff --git a/controllers/admin/AdminCarriersController.php b/controllers/admin/AdminCarriersController.php
index e807810d8..7313ca1a7 100644
--- a/controllers/admin/AdminCarriersController.php
+++ b/controllers/admin/AdminCarriersController.php
@@ -90,7 +90,7 @@ class AdminCarriersControllerCore extends AdminController
),
'type' => 'bool',
'orderby' => false,
- 'width' => 25
+ 'width' => 150
),
'position' => array(
'title' => $this->l('Position'),
diff --git a/controllers/admin/AdminCountriesController.php b/controllers/admin/AdminCountriesController.php
index 5daefa685..f1f379035 100644
--- a/controllers/admin/AdminCountriesController.php
+++ b/controllers/admin/AdminCountriesController.php
@@ -93,7 +93,7 @@ class AdminCountriesControllerCore extends AdminController
),
'call_prefix' => array(
'title' => $this->l('Call prefix'),
- 'width' => 40,
+ 'width' => 150,
'align' => 'center',
'callback' => 'displayCallPrefix'
),
diff --git a/controllers/admin/AdminShopUrlController.php b/controllers/admin/AdminShopUrlController.php
index 609a52118..6b62a367c 100644
--- a/controllers/admin/AdminShopUrlController.php
+++ b/controllers/admin/AdminShopUrlController.php
@@ -47,7 +47,7 @@ class AdminShopUrlControllerCore extends AdminController
),
'shop_name' => array(
'title' => $this->l('Shop name'),
- 'width' => 70
+ 'width' => 150
),
'domain' => array(
'title' => $this->l('Domain'),
@@ -71,7 +71,7 @@ class AdminShopUrlControllerCore extends AdminController
'type' => 'bool',
'orderby' => false,
'filter_key' => 'main',
- 'width' => 50,
+ 'width' => 100,
),
'active' => array(
'title' => $this->l('Enabled'),
diff --git a/controllers/admin/AdminStatesController.php b/controllers/admin/AdminStatesController.php
index f2cbf70e0..82c7a8517 100644
--- a/controllers/admin/AdminStatesController.php
+++ b/controllers/admin/AdminStatesController.php
@@ -57,13 +57,12 @@ class AdminStatesControllerCore extends AdminController
),
'name' => array(
'title' => $this->l('Name'),
- 'width' => 140,
'filter_key' => 'a!name'
),
'iso_code' => array(
'title' => $this->l('ISO code'),
'align' => 'center',
- 'width' => 50
+ 'width' => 75
),
'zone' => array(
'title' => $this->l('Zone'),
diff --git a/css/admin.css b/css/admin.css
index 579ceccab..96ff28fb6 100644
--- a/css/admin.css
+++ b/css/admin.css
@@ -2153,3 +2153,34 @@ div#scrollTop a:hover{
#content #customers .warn {margin:10px 0 0 0;}
#customers li {background-color:#ABDFF7;border:1px solid #ccc;float:left;margin:5px;padding:5px;}
#customers li .button {display:block;margin-top:5px;}
+
+
+/*container-customer*/
+#container-customer {
+ background-color:#EBEDF4;
+ border:1px solid #CCCED7;
+ color: #585A69;
+ padding:10px;
+}
+
+#container-customer h2 {
+color:#000;
+font-weight:normal;
+}
+
+#container-customer .info-customer-left {
+ float:left;
+ width:47%;
+ min-height:120px;
+ border-right:1px solid #fff;
+ padding-right:15px;
+}
+
+#container-customer .info-customer-right {
+ float:left;
+ width:49%;
+ border-left:1px solid #ccc;
+ min-height:120px;
+ padding-left:15px;
+
+}
|