diff --git a/admin-dev/themes/default/template/controllers/statuses/helpers/form/form.tpl b/admin-dev/themes/default/template/controllers/statuses/helpers/form/form.tpl index 54dd778b3..3441f31b9 100644 --- a/admin-dev/themes/default/template/controllers/statuses/helpers/form/form.tpl +++ b/admin-dev/themes/default/template/controllers/statuses/helpers/form/form.tpl @@ -33,9 +33,12 @@ {block name="input"} {if $input.type == "select_template"} -
- {foreach $languages as $language} -
+
+
+ {foreach $languages as $language} + {assign var='value_text' value=$fields_value[$input.name][$language.id_lang]} +
+
- {if isset($input.hint)}{$input.hint} {/if} - {l s='Preview'} +
- {/foreach} +
+ + + +
+
+ {/foreach} + {if isset($input.hint)} +
 
+
+
+ {if is_array($input.hint)} + {foreach from=$input.hint item=hint} + {$hint}
+ {/foreach} + {else} + {$input.hint} + {/if} +
+
+ {/if}
+
+ {else} {$smarty.block.parent} {/if} diff --git a/admin-dev/themes/default/template/helpers/form/form.tpl b/admin-dev/themes/default/template/helpers/form/form.tpl index db2f7e55d..98fee7018 100644 --- a/admin-dev/themes/default/template/helpers/form/form.tpl +++ b/admin-dev/themes/default/template/helpers/form/form.tpl @@ -414,18 +414,16 @@ {elseif $input.type == 'checkbox'} {foreach $input.values.query as $value} {assign var=id_checkbox value=$input.name|cat:'_'|cat:$value[$input.values.id]} -
-
- -
+
+
{/foreach} {elseif $input.type == 'file'} diff --git a/controllers/admin/AdminSlipController.php b/controllers/admin/AdminSlipController.php index f78b6a186..80f2adb9c 100644 --- a/controllers/admin/AdminSlipController.php +++ b/controllers/admin/AdminSlipController.php @@ -35,10 +35,12 @@ class AdminSlipControllerCore extends AdminController 'id_order_slip' => array( 'title' => $this->l('ID'), 'align' => 'center', + 'class' => 'fixed-width-xs' ), 'id_order' => array( 'title' => $this->l('ID Order'), - 'align' => 'left' + 'align' => 'left', + 'class' => 'fixed-width-md' ), 'date_add' => array( 'title' => $this->l('Date issued'),