[ 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 {assign var=CURRENCY_ID value=$RECORD_MODEL->getId()} 14 <div class="currencyTransformModalContainer"> 15 <div class="modal-header contentsBackground"> 16 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> 17 <h3>{vtranslate('LBL_TRANSFER_CURRENCY', $QUALIFIED_MODULE)}</h3> 18 </div> 19 <form id="transformCurrency" class="form-horizontal" method="POST"> 20 <input type="hidden" name="record" value="{$CURRENCY_ID}" /> 21 <div class="modal-body"> 22 <div class="row-fluid"> 23 <div class="control-group"> 24 <label class="muted control-label">{vtranslate('LBL_CURRENT_CURRENCY', $QUALIFIED_MODULE)}</label> 25 <div class="controls"> 26 <span>{vtranslate($RECORD_MODEL->get('currency_name'), $QUALIFIED_MODULE)}</span> 27 </div> 28 </div> 29 <div class="control-group"> 30 <label class="muted control-label">{vtranslate('LBL_TRANSFER_CURRENCY', $QUALIFIED_MODULE)} {vtranslate('LBL_TO', $QUALIFIED_MODULE)}</label> 31 <div class="controls row-fluid"> 32 <select class="select2 span6" name="transform_to_id"> 33 {foreach key=CURRENCY_ID item=CURRENCY_MODEL from=$CURRENCY_LIST} 34 <option value="{$CURRENCY_ID}">{vtranslate($CURRENCY_MODEL->get('currency_name'), $QUALIFIED_MODULE)}</option> 35 {/foreach} 36 </select> 37 </div> 38 </div> 39 </div> 40 </div> 41 {include file='ModalFooter.tpl'|@vtemplate_path:'Vtiger'} 42 </form> 43 </div> 44 {/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 |