Files
kupshop/admin/templates/window/parameters.merge.tpl
2025-08-02 16:30:27 +02:00

33 lines
834 B
Smarty

{extends "../window.tpl"}
{block size}
width = 1024;
height = 600;
{/block}
{block tabs}
{/block}
{block tabsContent}
<h1 class="h4 main-panel-title">{'mergeValue'|translate}</h1>
<div class="col-md-12">
<p>{'originalValue'|translate}: <b>{$body.values[$smarty.get.id_value].value}</b></p>
<p>{'mergeWith'|translate}</p>
</div>
<div class="col-md-12">
<select name="merge_with[]" multiple class="selecter">
{foreach $body.values as $id_value => $value}
{if $smarty.get.id_value != $id_value}
<option value="{$id_value}">{$value.value}</option>
{/if}
{/foreach}
</select>
<input type="hidden" value="{$smarty.get.ID}" name="ID">
<input type="hidden" value="{$smarty.get.id_value}" name="id_value">
</div>
{/block}