Sha256: 3bbaa330edfa4b6083ab33b2f4a6542928ed091534b3cd047dd9ed2105cffd17
Contents?: true
Size: 1.35 KB
Versions: 5
Compression:
Stored size: 1.35 KB
Contents
<h1>Listing Playback Types:</h1> <div id="bbbrails_servers_links"> <%= link_to('View server list', bigbluebutton_servers_path) %><br/> <%= link_to('View room list', bigbluebutton_rooms_path) %><br/> <%= link_to('View recording list', bigbluebutton_recordings_path) %> </div> </br></br> The list of playback types will be automatically filled with the playback types available in your web conference server. You can use this views to make them visible or invisible, a feature useful to dynamically hide playback types you don't want the users to have access in your application. </br></br> <ul id="bbbrails_list"> <% @playback_types.each do |playback_type| %> <li> <%= form_for(playback_type) do |f| %> <div><label><%= BigbluebuttonPlaybackType.human_attribute_name(:id) %></label> <%= playback_type.id %></div> <div><label><%= BigbluebuttonPlaybackType.human_attribute_name(:identifier) %></label> <%= playback_type.identifier %></div> <div><label><%= BigbluebuttonPlaybackType.human_attribute_name(:visible) %></label> <%= f.check_box :visible %> </div> <div><label><%= BigbluebuttonPlaybackType.human_attribute_name(:default) %></label> <%= f.check_box :default %> </div> <div><label>Access</label> <%= f.submit %> </div> <% end %> </li> <% end %> </ul>
Version data entries
5 entries across 5 versions & 1 rubygems