1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 02:06:37 +02:00
Files
anope/modules/webcpanel/templates/nickserv/alist.html
T

24 lines
517 B
HTML

{INCLUDE layout/header.loggedin.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 layout/footer.loggedin.html}