1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 23:26:39 +02:00
Files
anope/modules/extra/webcpanel/templates/default/chanserv/main.html
T

18 lines
558 B
HTML

{INCLUDE header.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>
<ul id="channelList">
{FOR CH,ECH IN CHANNEL_NAMES,ESCAPED_CHANNEL_NAMES}
<li><a href="/chanserv/set?channel={ECH}">{CH}</a></li>
{END FOR}
</ul>
</div>
{ELSE}
<em>You don't have access in any channel</em><br>
{END IF}
</div>
{INCLUDE footer.html}