4
mirror of git://git.acid.vegas/anope.git synced 2024-11-15 12:16:41 +00:00
anope/modules/webcpanel/templates/default/nickserv/alist.html
2023-05-07 13:44:21 -04:00

24 lines
485 B
HTML

{INCLUDE header.html}
<div class="panel-heading">Channel access list</div>
<div class="panel-body">
<table id="tableInfoNorm" class="table table-hover">
<thead>
<tr>
<th>Number</th>
<th>Channel</th>
<th>Access</th>
</tr>
</thead>
<tbody>
{FOR N,C,A IN NUMBERS,CHANNELS,ACCESSES}
<tr>
<td>{N}</td>
<td>{C}</td>
<td>{A}</td>
</tr>
{END FOR}
</tbody>
</table>
</div>
{INCLUDE footer.html}