mirror of
https://github.com/anope/anope.git
synced 2026-07-03 21:43:13 +02:00
4691351167
Fix log messages from commands send through webpanel Don't show OperServ section to non opers
14 lines
544 B
HTML
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>
|