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.
81 lines
2.1 KiB
81 lines
2.1 KiB
% title $self->l('ADMINISTRATION');
|
|
%=include 'header'
|
|
%=include 'public_toolbar'
|
|
<div class="container-fluid">
|
|
%= include 'owner_password_modal'
|
|
%= include 'join_password_modal'
|
|
%= include 'noscript'
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<%=l 'ROOM_DETAILS' %>
|
|
</div>
|
|
<% my $data = $self->get_room($room); %>
|
|
<table class="table table-hover">
|
|
<tbody>
|
|
<tr>
|
|
<th>
|
|
<%=l 'ROOM_ID' %>
|
|
</th>
|
|
<th>
|
|
<%= $data->{id} %>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<%=l 'CREATION_DATE' %>
|
|
</th>
|
|
<th class="timeStamp">
|
|
<%= $data->{create_timestamp} %>
|
|
</th>
|
|
</tr>
|
|
</tr>
|
|
<th>
|
|
<%=l 'LAST_ACTIVITY' %>
|
|
</th>
|
|
<th class="timeStamp">
|
|
<%= $data->{activity_timestamp} %>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<%=l 'LOCKED' %>
|
|
</th>
|
|
<th>
|
|
<input class="bs-switch" type="checkbox" id="lockSwitch" data-room="<%= $room %>" <%= ($data->{locked} eq '1') ? 'checked':''%>>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<%=l 'ASK_FOR_NAME' %>
|
|
</th>
|
|
<th>
|
|
<input class="bs-switch" type="checkbox" id="askForNameSwitch" data-room="<%= $room %>" <%= ($data->{ask_for_name} eq '1') ? 'checked':''%>>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<%=l 'PASSWORD_PROTECTED' %>
|
|
</th>
|
|
<th>
|
|
<input class="bs-switch" type="checkbox" id="joinPassSwitch" data-room="<%= $room %>" <%= ($data->{join_password}) ? 'checked':''%>>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<%=l 'PERSISTENT' %>
|
|
</th>
|
|
<th>
|
|
<input class="bs-switch" type="checkbox" id="ownerPassSwitch" data-room="<%= $room %>" <%= ($data->{owner_password}) ? 'checked':''%>>
|
|
</th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
%=include 'js_common'
|
|
<script>
|
|
$(document).ready(function(){
|
|
initManage();
|
|
});
|
|
</script>
|
|
%=include 'footer'
|
|
|