forked from External/greenlight
75 lines
3.4 KiB
Plaintext
75 lines
3.4 KiB
Plaintext
<%
|
|
# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/.
|
|
# Copyright (c) 2018 BigBlueButton Inc. and by respective authors (see below).
|
|
# This program is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU Lesser General Public License as published by the Free Software
|
|
# Foundation; either version 3.0 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
# You should have received a copy of the GNU Lesser General Public License along
|
|
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|
%>
|
|
|
|
<%= render 'shared/flash_messages' unless flash.empty? %>
|
|
|
|
<div class="background pb-1">
|
|
<div class="container">
|
|
<div class="row pt-9">
|
|
<div class="col-lg-9 col-sm-12">
|
|
<div id="room-title" class="display-3 form-inline <%= 'edit_hover_class' if current_user.main_room != @room %>">
|
|
<h1 contenteditable=false id="user-text" class="display-3 text-left mb-3 font-weight-400"><%= @room.name %></h1>
|
|
<% if current_user.main_room == @room %>
|
|
<a class="disable-click"><i class="fas fa-home align-top home-indicator ml-2"></i></a>
|
|
<% else %>
|
|
<a><i id="edit-room" class="fa fa-edit align-top home-indicator ml-2" data-edit-room="<%= @room.uid %>"></i></a>
|
|
<% end %>
|
|
</div>
|
|
<h4 class="text-left mb-6"><%= @room.sessions %> <%= t("room.sessions") %> | <%= @recordings.length %> <%= t("room.recordings") %></h4>
|
|
<label class="form-label"><%= t("room.invite_participants") %></label>
|
|
<form class="form-inline">
|
|
<div class="input-icon invite-link-input">
|
|
<span class="input-icon-addon">
|
|
<i class="fas fa-link"></i>
|
|
</span>
|
|
<input id="invite-url" type="text" class="form-control w-100" value="<%= request.base_url + @room.invite_path %>" readonly="">
|
|
</div>
|
|
<div id="copy" class="btn btn-primary mx-2">
|
|
<i class="fas fa-copy"></i>
|
|
<%= t("copy") %>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="col-lg-3 col-sm-12 force-bottom mt-5">
|
|
<% if @is_running %>
|
|
<%= button_to t("room.join"), room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %>
|
|
<% else %>
|
|
<%= button_to t("room.start"), start_room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="room_block_container" class="row pt-7 pb-2">
|
|
<% if current_user.rooms.length > 1 %>
|
|
<div class="col-lg-4 col-md-6 col-sm-12">
|
|
<%= link_to current_user.main_room do %>
|
|
<%= render "shared/components/room_block", room: current_user.main_room %>
|
|
<% end %>
|
|
</div>
|
|
<% current_user.secondary_rooms.each do |room| %>
|
|
<div class="col-lg-4 col-md-6 col-sm-12">
|
|
<%= link_to room do %>
|
|
<%= render "shared/components/room_block", room: room %>
|
|
<% end %>
|
|
</div>
|
|
<%= render "shared/modals/delete_room_modal", room: room %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "shared/sessions", recordings: @recordings, only_public: false %>
|