Files
CRM/layouts/vlayout/modules/Import/Import_Saved_Maps.tpl
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

21 lines
1.1 KiB
Smarty

{*<!--
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
-->*}
<select name="saved_maps" id="saved_maps" class="font-x-small chzn-select" onchange="ImportJs.loadSavedMap();">
<option id="-1" value="" selected>--{'LBL_SELECT_SAVED_MAPPING'|@vtranslate:$MODULE}--</option>
{foreach key=_MAP_ID item=_MAP from=$SAVED_MAPS}
<option id="{$_MAP_ID}" value="{$_MAP->getStringifiedContent()}">{$_MAP->getValue('name')}</option>
{/foreach}
</select>
<span id="delete_map_container" style="display:none;">
<i class="icon-trash cursorPointer" onclick="ImportJs.deleteMap('{$FOR_MODULE}');" alt="{'LBL_DELETE'|@vtranslate:$FOR_MODULE}"></i>
</span>