📄 ignorelist.tpl
字号:
{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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -