layouts/basic/modules/Settings/Picklist/PickListValueByRole.tpl
{*<!--
/*********************************************************************************
** 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.
* Contributor(s): YetiForce S.A.
********************************************************************************/
-->*}
{strip}
<div class="row mt-3">
<div class="col-md-2"> </div>
<div class="col-md-4 well-md" style="overflow: hidden">
<div id="assignToRolepickListValuesTable" class="fontBold textAlignCenter">
{foreach key=PICKLIST_KEY item=PICKLIST_VALUE from=$ALL_PICKLIST_VALUES}
<div data-id="{$PICKLIST_KEY}" class="valuesAssignedToRole u-cursor-pointer js-picklist-value-role {if in_array($PICKLIST_VALUE,$ROLE_PICKLIST_VALUES)}selectedCell{/if}">
{if in_array($PICKLIST_VALUE,$ROLE_PICKLIST_VALUES)}<i class="fas fa-check float-left"></i>{/if}{\App\Language::translate($PICKLIST_VALUE,$SELECTED_MODULE_NAME)}
</div>
{/foreach}
</div>
</div>
<div class="col-md-6 mt-2">
<div><span class="fas fa-info-circle"></span> <span class="selectedCell p-1">{\App\Language::translate('LBL_SELECTED_VALUES',$QUALIFIED_MODULE)}</span> <span>{\App\Language::translate('LBL_SELECTED_VALUES_MESSGAE',$QUALIFIED_MODULE)}</span></div>
<div><span class="fas fa-info-circle"></span> <span>{\App\Language::translate('LBL_ENABLE/DISABLE_MESSGAE',$QUALIFIED_MODULE)}</span></div><br />
<button id="saveOrder" disabled="" class="btn btn-success js-role-order">{\App\Language::translate('LBL_SAVE',$QUALIFIED_MODULE)}</button>
</div>
</div>
{/strip}