📄 managecountries.tpl
字号:
{strip}
<script type="text/javascript">
/* <![CDATA[ */
function checkMe(form)
{ldelim}
if (form.code.value == '' || form.name.value == ''){ldelim}
alert("{lang mkey='errormsgs' skey=20}");
return false;
{rdelim}
return true;
{rdelim}
function confirmDelete(id)
{ldelim}
var conmsg = "{lang mkey='admin_js__delete_error_msgs' skey=12}";
if (confirm(conmsg)){ldelim}
document.location='managecountries.php?action=delete&id='+id;
{rdelim}
{rdelim}
function confirmDeleteSel(frm)
{ldelim}
var conmsg = "{lang mkey='admin_js__delete_error_msgs' skey=14}";
if (confirm(conmsg)){ldelim}
document.frmCntry.groupaction.value = "{lang mkey='delete_selected'}";
document.forms['frmCntry'].submit();
{rdelim}
{rdelim}
/* ]]> */
</script>
{if $todo != ''}
{assign var="page_hdr01_text" value='<a href="managecountries.php" class="subhead">'|cat:"{lang mkey='manage_countries'}"|cat:'</a> > '}
{if $todo == 'add'}
{assign var="page_hdr01_text" value=$page_hdr01_text|cat:"{lang mkey='insert_country'}"}
{else}
{assign var="page_hdr01_text" value=$page_hdr01_text|cat:"{lang mkey='modify_country'}"}
{/if}
{else}
{assign var="page_hdr01_text" value="{lang mkey='manage_countries'}"}
{/if}
{include file="admin/admin_page_hdr01.tpl"}
<br />
<center>
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td class="module_detail_inside" width="100%">
{if $todo == 'add'}
{assign var="page_hdr02_text" value="{lang mkey='insert_country'}"}
{elseif $todo == 'edit'}
{assign var="page_hdr02_text" value="{lang mkey='modify_country'}"}
{else}
{assign var="page_hdr02_text" value="{lang mkey='countries_count'}: "|cat:$total_recs}
{/if}
{include file="admin/admin_page_hdr02.tpl"}
{ if $errmsg != ''}
<table>
<tr>
<td width="6"> </td>
<td colspan="2" style="padding-top: 5px; padding-bottom: 5px;"><span class="errors">{mylang mkey='errormsgs' skey=$errmsg}</span></td>
</tr>
</table>
{ /if }
{if $todo != ''}
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="left">
<form name="cntry" method="post" action="managecountries.php" onsubmit="javascript: return checkMe(this);">
<table width="540" cellspacing="{$config.cellspacing}" cellpadding="{$config.cellpadding}" border="0">
<tr>
<td width="6"> </td>
<td align="left" width="150">
{lang mkey='country_code'}:<font color="{lang mkey='required_info_indicator_color'}">{lang mkey='required_info_indicator'}</font>
</td>
<td >
<input type="text" name="code" {if $todo == 'edit' or $errmsg != ''}value="{$data.code|stripslashes}"{else}value=''{/if} />
</td>
</tr>
<tr>
<td width="6"> </td>
<td width="150">
{lang mkey='country_name'}:<font color="{lang mkey='required_info_indicator_color'}">{lang mkey='required_info_indicator'}</font>
</td>
<td >
<input type="text" name="name" {if $todo == 'edit' or $errmsg != ''}value="{$data.name|stripslashes}"{else}value=''{/if} />
</td>
</tr>
<tr>
<td width="6"> </td>
<td align="center">
<input name="id" type="hidden" value="{$data.id}" />
<input type="submit" class="formbutton" name="submit" {if $todo == 'edit'}value="{lang mkey='modify_country'}"{else}value="{lang mkey='insert_country'}" {/if} />
<input type="hidden" name="action" {if $todo == 'edit'}value='edited'{else}value='added' {/if} />
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
{ else }
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<table width="540" cellspacing="{$config.cellspacing}" cellpadding="{$config.cellpadding}" border="0">
<tr><td colspan="3"><a href="managecountries.php?action=add">{lang mkey='insert_country'}</a>
<td colspan="3" align="right">
<form action="" method="get" name="frmPageOpt">
{lang mkey='results_per_page'}
<select name="results_per_page" id="results_per_page">
{html_options options=$lang.search_results_per_page selected=$page_size}
</select>
<input type="submit" class="formbutton" value="{lang mkey='show'}" />
</form>
</td>
</tr>
</table>
<form action="managecountries.php" method='post' name="frmCntry" >
<table width="100%" cellspacing="{$config.cellspacing}" cellpadding="{$config.cellpadding}" border="0">
<tr class="table_head">
<th><input type="checkbox" name="chkall" value="" onclick="checkAll(this.form,'txtcheck[]',this.checked)" /></th>
<th nowrap>{lang mkey='col_head_srno'}</th>
<th nowrap><a href="?sort={lang mkey='country_code' escape='url'}&type={$sort_type}">{lang mkey='country_code'}</a></th>
<th nowrap><a href="?sort={lang mkey='country_name' escape='url'}&type={$sort_type}">{lang mkey='country_name'}</a></th>
<th >{lang mkey='action'}</th>
</tr>
{assign var="n" value="$upr"}
{foreach item=item key=key from=$countrieslist}
{math equation="$n+1" assign="n" }
<tr class="{cycle values="oddrow,evenrow"}">
<td><input type="checkbox" name="txtcheck[]" value="{$item.id}" /></td>
<td nowrap>{$n}</td>
<td nowrap>{$item.code|stripslashes}</td>
<td nowrap width="50%"><a href="managestates.php?countrycode={$item.code}">{$item.name|stripslashes}</a></td>
<td nowrap><a href="managecountries.php?action=edit&id={$item.id}"><img src="images/button_edit.png" alt='Edit' border="0" /></a>
<a href="javascript:confirmDelete({$item.id});"><img src="images/button_drop.png" alt="Delete" border="0" /></a></td>
</tr>
{/foreach}
<tr>
<td colspan="4">
<img src="images/arrow_ltr.png" alt="" />{lang mkey='with_selected'}
<input type="button" class="formbutton" value="{lang mkey='delete_selected'}" name="checkdel" onclick="javascript:confirmDeleteSel();" />
<input type="hidden" name="groupaction" value="" />
</td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td colspan="5" align="center">
{assign var="pageno" value=$smarty.get.offset}
{if $pageno == ""}{assign var="pageno" value=1}{/if}
{if $pageno != "1"}
<a href="managecountries.php?offset={$pageno-1}">{lang mkey='previous'}</a>
{else}
{lang mkey='previous'}
{/if}
{if $total_recs > $config.page_size}
<a href="managecountries.php?offset={$pageno+1}">{lang mkey='next'}</a>
{else}
{lang mkey='next'}
{/if}
</td>
</tr>
</table>
<br />
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td class="module_detail_inside">
{assign var="page_hdr02_text" value="{lang mkey='filter_records'}"}
{include file="admin/admin_page_hdr02.tpl"}
<table width="100%" border="0" cellspacing="2" cellpadding="1" align="center">
<tr>
<td>
<form name="srchMe" method="post" action="">
{lang mkey='country_code'}:
<input name="countrycode" value="{$countrycode}" type="text" size="4" maxlength="4" />
{lang mkey='or'}
{lang mkey='country_name'}:
<input type="text" name="countryname" value="{$countryname}" size="30" maxlength="100" />
<input type="submit" class="formbutton" name="searchme" value="{lang mkey='show'}" />
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
{/if}
</td>
</tr>
</table>
</center>
{/strip}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -