1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 21:43:13 +02:00
Files
anope/modules/extra/webcpanel/templates/default/chanserv/chanlist.html
T
Adam 4691351167 Cleanup previous commit
Fix log messages from commands send through webpanel
Don't show OperServ section to non opers
2013-09-03 18:51:18 -04:00

14 lines
544 B
HTML

<!--- <div class="panel-heading">Channels you have access in</div> -->
<div class="panel-body">
{IF EXISTS CHANNEL_NAMES}
<div>
<h3 style="margin: -12px 0 20px 0;"><small>Choose a channel to access it's Settings, Access or Akick pages.</small></h3>
{FOR CH,ECH IN CHANNEL_NAMES,ESCAPED_CHANNEL_NAMES}
<td><a href="{PAGE_NAME}?channel={ECH}" class="btn btn-sm btn-primary {IF EQ ECH ESCAPED_CHANNEL}disabled{END IF}">{CH}</a></td>
{END FOR}
</div>
{ELSE}
<em>You don't have access in any channels.</em><br>
{END IF}
</div><br>