📄 data_search_result.tpl
字号:
{{include file="header.tpl"}}
<div class="pagetitle">资源搜索结果</div>
<form>
<table class="tborder" cellSpacing="1" cellPadding="4" align="center">
<tr>
<td align="center" colspan="20" class="tcat">查找结果(共 {{$totalnum}} 条记录)</td>
</tr>
<tr class="thead" align="center">
<td width="8%" nowrap="nowrap">分类</td>
<td width="*">标题</td>
<td width="5%" nowrap="nowrap">种子</td>
<td width="5%" nowrap="nowrap">下载</td>
<td width="5%" nowrap="nowrap">完成</td>
<td width="8%" nowrap="nowrap">文件大小</td>
<td width="10%" nowrap="nowrap">发布者</td>
<td width="10%" nowrap="nowrap">操作</td>
</tr>
{{if $BtData}}
{{foreach item=row from=$BtData key=key}}
<tr height="18" class="alt{{if $key%2 eq 0}}1{{else}}2{{/if}}" align="center">
<td nowrap="nowrap"><a href="data.php?act=list&sort_id={{$row.sort_id}}">{{$row.sort_name}}</a></td>
<td align="left" style="line-height:140%;"><a href="{{$Config.site_path}}/show.php?hash={{$row.hash_id}}" target="_blank">{{$row.bt_data_title}}</a><br />发布日期:{{$row.release_date|date_format:"%m-%d %H:%M"}} IP:{{$row.ipaddress}}</td>
<td nowrap="nowrap">{{$row.seeders|default:"-"}}</td>
<td nowrap="nowrap">{{$row.leechers|default:"-"}}</td>
<td nowrap="nowrap">{{$row.completed|default:"-"}}</td>
<td nowrap="nowrap">{{$row.bt_data_file_size}}</td>
<td nowrap="nowrap"><a href="data.php?act=list&user_id={{$row.user_id}}">{{$row.user_name}}</a></td>
<td nowrap="nowrap"><a href="data.php?act=edit&id={{$row.bt_data_id}}" title="编辑">编</a> <a href="data.php?act={{if $row.put_top}}un{{/if}}top&id={{$row.bt_data_id}}" title="{{if $row.put_top}}取消{{/if}}置顶">{{if $row.put_top}}消{{/if}}顶</a> <a href="data.php?act={{if $row.is_commend}}un{{/if}}commend&id={{$row.bt_data_id}}" title="{{if $row.is_commend}}取消{{/if}}推荐">{{if $row.is_commend}}消{{/if}}荐</a> <a href="data.php?act=upgrade&id={{$row.bt_data_id}}" title="提升">提</a> <a href="data.php?act=delete&id={{$row.bt_data_id}}" onclick="return confirm('确定删除该条记录?');" title="删除">删</a></td>
</tr>
{{/foreach}}
<tr height="18">
<td colspan="10" class="thead text_left">{{$multipage|default:"只有一页"}}</td>
</tr>
{{else}}
<tr height="18">
<td colspan="10" class="alt1 text_center">没有匹配的记录![<a href="javascript:history.back();">返回上一页</a>]</td>
</tr>
{{/if}}
</table>
</form>
{{include file="footer.tpl"}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -