Add channel list search to ACP
This commit is contained in:
parent
278570f3ed
commit
4af0291470
3 changed files with 95 additions and 0 deletions
21
www/acp.html
21
www/acp.html
|
|
@ -42,6 +42,7 @@
|
|||
<li id="li_announce"><a href="javascript:void(0)" id="show_announce">Announcement Manager</a></li>
|
||||
<li id="li_gbans"><a href="javascript:void(0)" id="show_gbans">Global Bans</a></li>
|
||||
<li id="li_userlookup"><a href="javascript:void(0)" id="show_userlookup">Users</a></li>
|
||||
<li id="li_chanlookup"><a href="javascript:void(0)" id="show_chanlookup">Channels</a></li>
|
||||
<li id="li_chanloaded"><a href="javascript:void(0)" id="show_chanloaded">Loaded Channels</a></li>
|
||||
<li id="li_actionlog"><a href="javascript:void(0)" id="show_actionlog">Action Log</a></li>
|
||||
<li id="li_stats"><a href="javascript:void(0)" id="show_stats">Server Stats</a></li>
|
||||
|
|
@ -163,6 +164,26 @@
|
|||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
<div class="span12" id="chanlookup">
|
||||
<h3>Channels</h3>
|
||||
<form class="form-inline" action="javascript:void(0)">
|
||||
<input type="text" id="chanlookup_value" placeholder="Name">
|
||||
<select id="chanlookup_field">
|
||||
<option value="name">Channel Name</option>
|
||||
<option value="owner">Channel Owner</option>
|
||||
</select>
|
||||
<button class="btn" id="chanlookup_submit">Search</button>
|
||||
</form>
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th id="chanlookup_id">ID</th>
|
||||
<th id="chanlookup_name">Name</th>
|
||||
<th id="chanlookup_owner">Owner</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
<div class="span12" id="channellist">
|
||||
<h3>Loaded Channels</h3>
|
||||
<button class="btn" id="listloaded_refresh">Refresh</button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue