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

32 lines
1.8 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.
*
********************************************************************************/
-->*}
{strip}
<br><br>
<div class="row-fluid">
<div class="span2">&nbsp;</div>
<div class="span3" style="overflow: hidden">
<div id="assignToRolepickListValuesTable" class="row-fluid fontBold textAlignCenter">
{foreach key=PICKLIST_KEY item=PICKLIST_VALUE from=$ALL_PICKLIST_VALUES}
<div data-value="{$PICKLIST_VALUE}" data-id="{$PICKLIST_KEY}" style="border: 1px solid #adadad;padding: 4%;overflow: hidden;text-overflow: ellipsis;" class="cursorPointer assignToRolePickListValue {if in_array($PICKLIST_VALUE,$ROLE_PICKLIST_VALUES)}selectedCell{else}unselectedCell{/if}">
{if in_array($PICKLIST_VALUE,$ROLE_PICKLIST_VALUES)}<i class="icon-ok pull-left"></i>{/if}{vtranslate($PICKLIST_VALUE,$SELECTED_MODULE_NAME)}
</div>
{/foreach}
</div>
</div>
<div class="span6">
<div><i class="icon-info-sign"></i>&nbsp;&nbsp;<span class="selectedCell padding1per">{vtranslate('LBL_SELECTED_VALUES',$QUALIFIED_MODULE)}</span>&nbsp;<span>{vtranslate('LBL_SELECTED_VALUES_MESSGAE',$QUALIFIED_MODULE)}</span></div><br>
<div><i class="icon-info-sign"></i>&nbsp;&nbsp;<span>{vtranslate('LBL_ENABLE/DISABLE_MESSGAE',$QUALIFIED_MODULE)}</span></div><br>
&nbsp;&nbsp;<button id="saveOrder" disabled="" class="btn btn-success">{vtranslate('LBL_SAVE',$QUALIFIED_MODULE)}</button>
</div>
</div>
{/strip}