ignorelist.tpl
来自「flashget43的源代码 一个比较常用的下载程序」· TPL 代码 · 共 38 行
TPL
38 行
{assign var="title" value="Ignores"}
{include file="top.tpl"}
<center>
<h4>Ignores</h4>
<form name="ignorelist" id="ignorelist" action="ignorelist.php" method="post">
<input type="hidden" id="sort" name="sort" value="none">
</form>
{if $error}
<font color="red">{$error}</font><br><br>
{/if}
{if $notice}
<font color="green">{$notice}</font><br><br>
{/if}
{if $ignores}
<table border="1">
<tr>
<th><a href="javascript:my_getbyid('sort').value = 'created'; my_getbyid('ignorelist').submit()">created</a></th>
<th><a href="javascript:my_getbyid('sort').value = 'user'; my_getbyid('ignorelist').submit()">user</a></th>
<th><a href="javascript:my_getbyid('sort').value = 'iuser'; my_getbyid('ignorelist').submit()">ignored user</a></th>
<th><a href="javascript:my_getbyid('sort').value = 'iuserid'; my_getbyid('ignorelist').submit()">remove ignore</a></th>
</tr>
{foreach from=$ignores item=ignore}
<tr>
<td>{$ignore.created}</td>
<td align=center><a href="user.php?id={$ignore.userid}">{$ignore.user}</a></td>
<td align=center><a href="user.php?id={$ignore.iuserid}">{$ignore.iuser}</a></td>
<td align=center><a href="ignorelist.php?unignoreid={$ignore.iuserid}">{$ignore.iuserid}</a></td>
</tr>
{/foreach}
{else}
No ignores found
{/if}
{include file="bottom.tpl"}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?