[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 {*<!-- 2 /********************************************************************************* 3 ** The contents of this file are subject to the vtiger CRM Public License Version 1.0 4 * ("License"); You may not use this file except in compliance with the License 5 * The Original Code is: vtiger CRM Open Source 6 * The Initial Developer of the Original Code is vtiger. 7 * Portions created by vtiger are Copyright (C) vtiger. 8 * All Rights Reserved. 9 * 10 ********************************************************************************/ 11 -->*} 12 {strip} 13 <div class='modelContainer'> 14 <div class="modal-header contentsBackground"> 15 <button data-dismiss="modal" class="close" title="{vtranslate('LBL_CLOSE')}">×</button> 16 <h3>{vtranslate('LBL_MERGING_CRITERIA_SELECTION', $MODULE)}</h3> 17 </div> 18 <form class="form-horizontal" id="findDuplicate" action="index.php" method="POST"> 19 <input type='hidden' name='module' value='{$MODULE}' /> 20 <input type='hidden' name='view' value='FindDuplicates' /> 21 <br> 22 <div class="control-group"> 23 <span class="control-label"> 24 {vtranslate('LBL_AVAILABLE_FIELDS', $MODULE)} 25 </span> 26 <div class="controls"> 27 <div class="row-fluid"> 28 <span class="span10" style="max-width: 200px;"> 29 <select id="fieldList" class="select2 row-fluid" multiple="true" name="fields[]" 30 data-validation-engine="validate[required]"> 31 {foreach from=$FIELDS item=FIELD} 32 {if $FIELD->isViewableInDetailView()} 33 <option value="{$FIELD->getName()}">{vtranslate($FIELD->get('label'), $MODULE)}</option> 34 {/if} 35 {/foreach} 36 </select> 37 </span> 38 </div> 39 <div class="row-fluid"> 40 <label><input type="checkbox" name="ignoreEmpty" checked /><span class="alignMiddle"> {vtranslate('LBL_IGNORE_EMPTY_VALUES', $MODULE)}</span></label 41 </div> 42 <br><br> 43 </div> 44 </div> 45 <div class="modal-footer"> 46 <div class="pull-right cancelLinkContainer"> 47 <a class="cancelLink" type="reset" data-dismiss="modal" data-dismiss="modal">{vtranslate('LBL_CANCEL', $MODULE)}</a> 48 </div> 49 <button class="btn btn-success" type="submit" disabled="true"> 50 <strong>{vtranslate('LBL_FIND_DUPLICATES', $MODULE)}</strong> 51 </button> 52 </div> 53 </form> 54 </div> 55 {/strip}
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |