0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
Smarty
/
templates
/
[
Home
]
File: CurrencyListView.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. * ********************************************************************************/ -->*} <script language="JAVASCRIPT" type="text/javascript" src="include/js/smoothscroll.js"></script> <script language="JavaScript" type="text/javascript" src="include/js/menu.js"></script> <br> <table align="center" border="0" cellpadding="0" cellspacing="0" width="98%"> <tbody><tr> <td valign="top"><img src="{$IMAGE_PATH}showPanelTopLeft.gif"></td> <td class="showPanelBg" style="padding: 10px;" valign="top" width="100%"> <br> <div align=center> {include file='SetMenu.tpl'} <!-- DISPLAY --> <table border=0 cellspacing=0 cellpadding=5 width=100% class="settingsSelUITopLine"> <form action="index.php"> <input type="hidden" name="module" value="Settings"> <input type="hidden" name="action" value="CurrencyEditView"> <input type="hidden" name="parenttab" value="{$PARENTTAB}"> <tr> <td width=50 rowspan=2 valign=top><img src="{$IMAGE_PATH}currency.gif" alt="{$MOD.LBL_USERS}" width="48" height="48" border=0 title="{$MOD.LBL_USERS}"></td> <td class="heading2" valign="bottom" ><b><a href="index.php?module=Settings&action=index&parenttab=Settings">{$MOD.LBL_SETTINGS}</a> > {$MOD.LBL_CURRENCY_SETTINGS} </b></td> </tr> <tr> <td valign=top class="small">{$MOD.LBL_CURRENCY_DESCRIPTION}</td> </tr> </table> <br> <table border=0 cellspacing=0 cellpadding=10 width=100% > <tr> <td> <table border=0 cellspacing=0 cellpadding=5 width=100% class="tableHeading"> <tr> <td class="big"><strong>{$MOD.LBL_CURRENCY_LIST}</strong></td> <td class="small" align="right"> </td> </tr> </table> <table width="100%" border="0" cellpadding="5" cellspacing="0" class="listTableTopButtons"> <tr> <td class=small align=right> <input type="submit" value="{$MOD.LBL_NEW_CURRENCY}" class="crmButton create small"> </td> </tr> </table> <div id="CurrencyListViewContents"> {include file="CurrencyListViewEntries.tpl"} </div> <table border=0 cellspacing=0 cellpadding=5 width=100% > <tr><td class="small" nowrap align=right><a href="#top">{$MOD.LBL_SCROLL}</a></td></tr> </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> </form> </table> </div> </td> <td valign="top"><img src="{$IMAGE_PATH}showPanelTopRight.gif"></td> </tr> </tbody> </table> <div id="currencydiv" style="display:block;position:absolute;width:250px;"></div> {literal} <script> function deleteCurrency(currid) { $("status").style.display="inline"; new Ajax.Request( 'index.php', {queue: {position: 'end', scope: 'command'}, method: 'post', postBody: 'action=SettingsAjax&file=CurrencyDeleteStep1&return_action=CurrencyListView&return_module=Settings&module=Settings&parenttab=Settings&id='+currid, onComplete: function(response) { $("status").style.display="none"; $("currencydiv").innerHTML= response.responseText; } } ); } function transferCurrency(del_currencyid) { $("status").style.display="inline"; $("CurrencyDeleteLay").style.display = "none"; var trans_currencyid=$("transfer_currency_id").options[$("transfer_currency_id").options.selectedIndex].value; new Ajax.Request( 'index.php', {queue: {position: 'end', scope: 'command'}, method: 'post', postBody: 'module=Settings&action=SettingsAjax&file=CurrencyDelete&ajax=true&delete_currency_id='+del_currencyid+'&transfer_currency_id='+trans_currencyid, onComplete: function(response) { $("status").style.display="none"; $("CurrencyListViewContents").innerHTML= response.responseText; } } ); } </script> {/literal}