mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
% title $self->l('ADMINISTRATION');
|
|
%=include 'header'
|
|
%=include 'public_toolbar'
|
|
<div class="container-fluid">
|
|
%= include 'noscript'
|
|
%= include 'configure_modal'
|
|
%= include 'invite_modal'
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<div class="form-inline">
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<input type="text" id="searchRoom" class="form-control" value=""/>
|
|
<div class="input-group-addon">
|
|
<span class="glyphicon glyphicon-search">
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="text-center" id="pagination">
|
|
</div>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<%=l 'ROOM_NAME' %>
|
|
</th>
|
|
<th>
|
|
<%=l 'MANAGE' %>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="roomList">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
%=include 'js_common'
|
|
<script>
|
|
$(document).ready(function(){
|
|
initAdmin();
|
|
});
|
|
</script>
|
|
%=include 'footer'
|
|
|