Sha256: f017242677fc3ebe382c75c81d07913742b0c8937d9376f4732f8b18b69a4743

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 KB

Contents

<h1>Listing <%= BigbluebuttonServer.model_name.human %>:</h1>

<div id="bbbrails_servers_links">
  <%= link_to('View room list', bigbluebutton_rooms_path) %><br/>
  <%= link_to('View recording list', bigbluebutton_recordings_path) %><br/>
  <%= link_to('New server', new_bigbluebutton_server_path) %>
</div>

<ul id="bbbrails_list">
  <% @servers.each do |server| %>
    <li>
      <div><label><%= BigbluebuttonServer.human_attribute_name(:id) %></label> <%= server.id %></div>
      <div><label><%= BigbluebuttonServer.human_attribute_name(:name) %></label> <%= server.name %></div>
      <div><label><%= BigbluebuttonServer.human_attribute_name(:url) %></label> <%= server.url %></div>
      <div><label><%= BigbluebuttonServer.human_attribute_name(:secret) %></label> <%= server.secret %></div>
      <div><label><%= BigbluebuttonServer.human_attribute_name(:version) %></label> <%= server.version %></div>
      <div><label><%= BigbluebuttonServer.human_attribute_name(:slug) %></label> <%= server.slug %></div>
      <div><label>Access</label>
        <%= link_to 'Show', server %> |
        <%= link_to 'View rooms', rooms_bigbluebutton_server_path(server) %> |
        <%= link_to 'Activity monitor', activity_bigbluebutton_server_path(server) %> |
        <%= link_to 'Edit', edit_bigbluebutton_server_path(server) %> |
        <%= link_to 'Destroy', bigbluebutton_server_path(server), :confirm => 'Are you sure?', :method => :delete %>
      </div>
      <div><label>Recordings</label>
        <%= link_to 'View recordings', recordings_bigbluebutton_server_path(server) %> |
        <%= link_to 'Fetch recordings', fetch_recordings_bigbluebutton_server_path(server), :confirm => 'Are you sure?', :method => :post %>
      </div>
    </li>
  <% end %>
</ul>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bigbluebutton_rails-3.0.0 app/views/bigbluebutton/servers/index.html.erb