55 lines
2.0 KiB
Plaintext
55 lines
2.0 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/>.
|
|
%>
|
|
|
|
<div class="row mt-2">
|
|
<% if search %>
|
|
<div class="col-md-6">
|
|
<p class="subtitle"><%= title(subtitle) %></p>
|
|
</div>
|
|
|
|
<div class="col-md-6 mb-4">
|
|
<div id="search-bar" class="d-inline-block float-right">
|
|
<div class="input-group">
|
|
<input id="search-input" type="text" class="form-control" placeholder="<%= t("settings.search") %>..." value="<%= @search %>">
|
|
<% unless @search.blank? %>
|
|
<span id="clear-search" class="text-primary" onclick="clearSearch()">
|
|
<i class="fas fa-times"></i>
|
|
</span>
|
|
<% end %>
|
|
<span class="input-group-append">
|
|
<button class="btn btn-outline-primary" type="button" onclick="searchPage()">
|
|
<i class="fas fa-search"></i>
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<% if defined?(search_info) && search_info.present? %>
|
|
<div class="float-right mt-5">
|
|
<small>
|
|
<i class="fas fa-info-circle"></i>
|
|
<%= search_info %>
|
|
</small>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% else %>
|
|
<div class="col-12">
|
|
<p class="subtitle"><%= title(subtitle) %></p>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<hr class="mt-0">
|