You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
{if $full_page}
|
|
{include file="pageheader.htm"}
|
|
{insert_scripts files="../js/utils.js,listtable.js"}
|
|
<div class="form-div">
|
|
<form action="search_log.php" method="post" style="margin:0px">
|
|
{$lang.start_date} {html_select_date field_order="YMD" prefix="start_date" time=$start_date start_year="-10" end_year="+1" display_days=true month_format="%m"}
|
|
{$lang.end_date} {html_select_date field_order="YMD" prefix="end_date" time=$end_date start_year="-10" end_year="+1" display_days=true month_format="%m"}
|
|
<input type="hidden" name="act" value="list" />
|
|
<input type="submit" name="submit" value="{$lang.query}" class="button" />
|
|
</form>
|
|
</div>
|
|
<div class="list-div" id="listDiv">
|
|
{/if}
|
|
<table cellspacing='0' cellpadding='0'>
|
|
<tr>
|
|
<th>{$lang.keywords}</th><th width="25%">{$lang.date}</th><th width="20%">{$lang.hits}</th>
|
|
</tr>
|
|
{foreach from=$logdb item=val}
|
|
<tr>
|
|
<td>{$val.keyword}</td><td align="center">{$val.date}</td><td align="center">{$val.count}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
<table id="page-table" cellspacing="0">
|
|
<tr>
|
|
<td align="right" nowrap="true">
|
|
{include file="page.htm"}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{if $full_page}
|
|
</div>
|
|
<script type="Text/Javascript" language="JavaScript">
|
|
listTable.recordCount = {$record_count};
|
|
listTable.pageCount = {$page_count};
|
|
{foreach from=$filter item=item key=key}
|
|
listTable.filter.{$key} = '{$item}';
|
|
{/foreach}
|
|
<!--
|
|
onload = function()
|
|
{
|
|
// 开始检查订单
|
|
startCheckOrder();
|
|
}
|
|
//-->
|
|
</script>
|
|
{include file="pagefooter.htm"}
|
|
{/if}
|