mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Spamfilter cosmetic issues.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12557 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
04206e9b86
commit
9c69c4a1f5
2 changed files with 58 additions and 60 deletions
|
|
@ -5,36 +5,35 @@
|
|||
<li><a href="{getUrl('','module','admin','act','dispSpamfilterAdminDeniedWordList')}">{$lang->cmd_denied_word}</a></li>
|
||||
<li><a href="{getUrl('','module','admin','act','dispSpamfilterAdminConfigBlock')}">{$lang->cmd_config_block}</a></li>
|
||||
</ul>
|
||||
|
||||
<form action="./" method="post" style="margin-right:14px">
|
||||
<input type="hidden" name="act" value="procSpamfilterAdminDeleteDeniedIP" />
|
||||
<input type="hidden" name="module" value="spamfilter" />
|
||||
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<caption><strong>{$lang->cmd_denied_ip}</strong></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">IP</th>
|
||||
<th scope="col">{$lang->description}</th>
|
||||
<th scope="col">{$lang->regdate}</th>
|
||||
<th scope="col"><input type="checkbox" name="ipaddress" title="Check All" /></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr loop="$ip_list => $ip_info">
|
||||
<td>{$ip_info->ipaddress}</td>
|
||||
<td>{$ip_info->description}</td>
|
||||
<td>{zdate($ip_info->regdate,'Y-m-d')}</td>
|
||||
<td><input type="checkbox" name="ipaddress[]" value="{$ip_info->ipaddress}" /></td>
|
||||
</tr>
|
||||
<tr cond="!$ip_list">
|
||||
<td colspan="4" style="text-align:center">{$lang->no_data}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<button type="submit" class="x_btn x_btn-primary">{$lang->cmd_delete}</button>
|
||||
<form action="./" method="post">
|
||||
<input type="hidden" name="act" value="procSpamfilterAdminDeleteDeniedIP" />
|
||||
<input type="hidden" name="module" value="spamfilter" />
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<caption>
|
||||
<strong>{$lang->cmd_denied_ip}</strong>
|
||||
<button type="submit" class="x_btn x_pull-right">{$lang->cmd_delete}</button>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">IP</th>
|
||||
<th scope="col">{$lang->description}</th>
|
||||
<th scope="col">{$lang->regdate}</th>
|
||||
<th scope="col"><input type="checkbox" name="ipaddress" title="Check All" /></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr loop="$ip_list => $ip_info">
|
||||
<td>{$ip_info->ipaddress}</td>
|
||||
<td>{$ip_info->description}</td>
|
||||
<td>{zdate($ip_info->regdate,'Y-m-d')}</td>
|
||||
<td><input type="checkbox" name="ipaddress[]" value="{$ip_info->ipaddress}" /></td>
|
||||
</tr>
|
||||
<tr cond="!$ip_list">
|
||||
<td colspan="4" style="text-align:center">{$lang->no_data}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<form action="./" style="margin-right:14px">
|
||||
<input type="hidden" name="act" value="procSpamfilterAdminInsertDeniedIP" />
|
||||
<input type="hidden" name="module" value="spamfilter" />
|
||||
|
|
|
|||
|
|
@ -5,38 +5,37 @@
|
|||
<li class="x_active"><a href="{getUrl('','module','admin','act','dispSpamfilterAdminDeniedWordList')}">{$lang->cmd_denied_word}</a></li>
|
||||
<li><a href="{getUrl('','module','admin','act','dispSpamfilterAdminConfigBlock')}">{$lang->cmd_config_block}</a></li>
|
||||
</ul>
|
||||
|
||||
<form action="./" method="post" style="margin-right:14px">
|
||||
<input type="hidden" name="act" value="procSpamfilterAdminDeleteDeniedWord" />
|
||||
<input type="hidden" name="module" value="spamfilter" />
|
||||
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<caption><strong>{$lang->cmd_denied_word}</strong></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->word}</th>
|
||||
<th scope="col">{$lang->latest_hit}</th>
|
||||
<th scope="col">{$lang->hit}</th>
|
||||
<th scope="col">{$lang->regdate}</th>
|
||||
<th scope="col"><input type="checkbox" name="word" title="Check All" /></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr loop="$word_list => $word_info">
|
||||
<td>{$word_info->word}</td>
|
||||
<td><!--@if($word_info->latest_hit)-->{$word_info->latest_hit}<!--@else-->-<!--@end--></td>
|
||||
<td>{$word_info->hit}</td>
|
||||
<td>{zdate($word_info->regdate,'Y-m-d')}</td>
|
||||
<td><input type="checkbox" name="word[]" value="{$word_info->word}" /></td>
|
||||
</tr>
|
||||
<tr cond="!$word_list">
|
||||
<td colspan="5" style="text-align:center">{$lang->no_data}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<button type="submit" class="x_btn x_btn-primary">{$lang->cmd_delete}</button>
|
||||
<form action="./" method="post">
|
||||
<input type="hidden" name="act" value="procSpamfilterAdminDeleteDeniedWord" />
|
||||
<input type="hidden" name="module" value="spamfilter" />
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<caption>
|
||||
<strong>{$lang->cmd_denied_word}</strong>
|
||||
<button type="submit" class="x_btn x_pull-right">{$lang->cmd_delete}</button>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->word}</th>
|
||||
<th scope="col">{$lang->latest_hit}</th>
|
||||
<th scope="col">{$lang->hit}</th>
|
||||
<th scope="col">{$lang->regdate}</th>
|
||||
<th scope="col"><input type="checkbox" name="word" title="Check All" /></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr loop="$word_list => $word_info">
|
||||
<td>{$word_info->word}</td>
|
||||
<td><!--@if($word_info->latest_hit)-->{$word_info->latest_hit}<!--@else-->-<!--@end--></td>
|
||||
<td>{$word_info->hit}</td>
|
||||
<td>{zdate($word_info->regdate,'Y-m-d')}</td>
|
||||
<td><input type="checkbox" name="word[]" value="{$word_info->word}" /></td>
|
||||
</tr>
|
||||
<tr cond="!$word_list">
|
||||
<td colspan="5" style="text-align:center">{$lang->no_data}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<form action="./" style="margin-right:14px">
|
||||
<input type="hidden" name="act" value="procSpamfilterAdminInsertDeniedWord" />
|
||||
<input type="hidden" name="module" value="spamfilter" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue