mirror of
https://github.com/anope/anope.git
synced 2026-07-01 03:26:38 +02:00
43 lines
967 B
HTML
43 lines
967 B
HTML
{INCLUDE header.html}
|
|
{FOR M IN MESSAGES}
|
|
{M}<br/>
|
|
{END FOR}
|
|
{IF EXISTS MASKS}
|
|
<b>Akick List</b></br>
|
|
<table width="100%" height="100%">
|
|
<tr>
|
|
<th>Mask</th>
|
|
<th>Creator</th>
|
|
<th>Reason</th>
|
|
</tr>
|
|
{FOR MASK,CREATOR,REASON IN MASKS,CREATORS,REASONS}
|
|
<tr>
|
|
<td>{MASK}</td>
|
|
<td>{CREATOR}</td>
|
|
<td>{REASON}</td>
|
|
<td><a href="/chanserv/akick?channel={ESCAPED_CHANNEL}&mask={MASK}&del=1">Delete</a></td>
|
|
</tr>
|
|
{END FOR}
|
|
</table>
|
|
{ELSE}
|
|
<b>Akick list is empty.</b>
|
|
{END IF}
|
|
|
|
<br/><br/>
|
|
|
|
<b>Add an akick entry</b><br/>
|
|
<form method="post" action="/chanserv/akick?channel={ESCAPED_CHANNEL}">
|
|
<table width="100%" height="100%">
|
|
<tr>
|
|
<th>Mask</th>
|
|
<th>Reason</th>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="text" name="mask"></td>
|
|
<td><input type="text" name="access"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="submit" value="Add">
|
|
</form>
|
|
{INCLUDE footer.html}
|