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.
58 lines
1.5 KiB
58 lines
1.5 KiB
% title $self->l('ROOM_MANAGEMENT');
|
|
%=include 'header'
|
|
%=include 'public_toolbar'
|
|
<div class="container-fluid">
|
|
%= include 'noscript'
|
|
%= include 'configure_modal'
|
|
%= include 'delete_room_modal'
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<div class="form-inline">
|
|
<div class="form-group">
|
|
<div class="input-group input-group-lg">
|
|
<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 class="hidden-xs">
|
|
<%= l('CREATION_DATE') %>
|
|
</th>
|
|
<th class="hidden-xs">
|
|
<%= l('LAST_ACTIVITY') %>
|
|
</th>
|
|
<th class="hidden-xs hidden-sm">
|
|
<%= l('NUMBER_OF_PARTICIPANTS') %>
|
|
</th>
|
|
<th>
|
|
<%= l('MANAGE') %>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="roomList">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
%=include 'js_common'
|
|
<script>
|
|
$(document).ready(function(){
|
|
initAdminRooms();
|
|
});
|
|
</script>
|
|
%=include 'footer'
|
|
|