2013-06-12 17:07:58 +00:00
|
|
|
<script src="/assets/js/channelsettings.js"></script>
|
2013-06-15 21:45:07 +00:00
|
|
|
<div class="btn-group">
|
|
|
|
<a class="btn dropdown-toggle" data-toggle="dropdown" href="javascript:void(0)">
|
|
|
|
<span id="csdropdown_title">Moderation Menu</span>
|
|
|
|
<span class="caret"></span>
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu" id="channelsettings_nav">
|
|
|
|
<li id="optedit_tab"><a href="javascript:void(0);" id="show_optedit">Channel Options</a></li>
|
|
|
|
<li id="permedit_tab"><a href="javascript:void(0);" id="show_permedit">Permissions</a></li>
|
|
|
|
<li id="motdedit_tab"><a href="javascript:void(0);" id="show_motdedit">MOTD Editor</a></li>
|
|
|
|
<li id="filteredit_tab"><a href="javascript:void(0);" id="show_filteredit">Chat Filters</a></li>
|
|
|
|
<li id="cssedit_tab"><a href="javascript:void(0);" id="show_cssedit">CSS Editor</a></li>
|
|
|
|
<li id="jsedit_tab"><a href="javascript:void(0);" id="show_jsedit">JS Editor</a></li>
|
|
|
|
<li id="banlist_tab"><a href="javascript:void(0);" id="show_banlist">Ban List</a></li>
|
2013-06-18 14:46:28 +00:00
|
|
|
<li id="channelranks_tab"><a href="javascript:void(0);" id="show_channelranks">Channel Ranks</a></li>
|
2013-06-18 03:57:29 +00:00
|
|
|
<li id="loginhistory_tab"><a href="javascript:void(0);" id="show_loginhistory">Recent Connections</a></li>
|
2013-06-15 21:45:07 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<hr>
|
2013-06-12 17:07:58 +00:00
|
|
|
|
|
|
|
<div id="optedit" class="span12">
|
2013-06-15 21:45:07 +00:00
|
|
|
<form class="form-horizontal" action="javascript:void(0)">
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- prevent chat flood -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_chat_antiflood">Prevent Chat Flood</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="checkbox" id="opt_chat_antiflood">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- convert URLs to links -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_enable_link_regex">Convert URLs in chat to links</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="checkbox" id="opt_enable_link_regex">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- voteskip toggle -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_allow_voteskip">Allow Voteskip</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="checkbox" id="opt_allow_voteskip">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- voteskip ratio -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_voteskip_ratio">Voteskip Ratio</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="text" id="opt_voteskip_ratio" placeholder="0.5">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<hr>
|
|
|
|
<strong>Admin-Only Controls</strong>
|
|
|
|
<!-- page title -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_pagetitle">Page Title</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="text" id="opt_pagetitle" placeholder="CyTube">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- external CSS -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_externalcss">External CSS</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="text" id="opt_externalcss" placeholder="Stylesheet URL">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- external JS -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_externaljs">External Javascript</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="text" id="opt_externaljs" placeholder="Script URL">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- show publicly -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label" for="opt_show_public">List Channel Publicly</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="checkbox" id="opt_show_public">
|
|
|
|
</div>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
2013-06-17 22:16:59 +00:00
|
|
|
<!-- submit -->
|
|
|
|
<button class="btn btn-primary" id="chanopts_submit">Save</button>
|
|
|
|
</form>
|
2013-06-15 21:45:07 +00:00
|
|
|
</div>
|
|
|
|
<br>
|
2013-06-12 17:07:58 +00:00
|
|
|
</div>
|
|
|
|
<div id="permedit" class="span12">
|
|
|
|
</div>
|
|
|
|
<div id="motdedit" class="span12">
|
2013-06-15 21:45:07 +00:00
|
|
|
<textarea rows="10" id="motdtext"></textarea>
|
|
|
|
<button class="btn btn-primary" id="save_motd">Save</button>
|
|
|
|
</div>
|
|
|
|
<div id="filteredit" class="span12">
|
|
|
|
Filters Here
|
|
|
|
</div>
|
|
|
|
<div id="cssedit" class="span12">
|
|
|
|
<p>Max 20KB. If you need more space, host the file externally and use the External CSS option</p>
|
|
|
|
<textarea rows="10" id="csstext"></textarea>
|
|
|
|
<button class="btn btn-primary" id="save_css">Save</button>
|
|
|
|
</div>
|
|
|
|
<div id="jsedit" class="span12">
|
|
|
|
<p>Max 20KB. If you need more space, host the file externally and use the External JS option</p>
|
|
|
|
<textarea rows="10" id="jstext"></textarea>
|
|
|
|
<button class="btn btn-primary" id="save_js">Save</button>
|
2013-06-12 17:07:58 +00:00
|
|
|
</div>
|
2013-06-18 03:57:29 +00:00
|
|
|
<div id="banlist" class="span12">
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Unban</th>
|
|
|
|
<th>IP</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Aliases</th>
|
|
|
|
<th>Banned By</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div id="loginhistory" class="span12">
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Aliases</th>
|
|
|
|
<th>Time</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-06-18 14:46:28 +00:00
|
|
|
<div id="channelranks" class="span12">
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Rank (click to edit)</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|