<%= link_to(t('bigbluebutton_rails.view_server_list'), bigbluebutton_servers_path, :class => 'basic_button medium_button blue_button') %>
<%= link_to(t('bigbluebutton_rails.view_recording_list'), bigbluebutton_recordings_path, :class => 'basic_button medium_button blue_button') %>
<%= link_to(t('bigbluebutton_rails.new_room'), new_bigbluebutton_room_path, :class => 'basic_button medium_button blue_button') %>
<% @rooms.each do |room| %>
<%= room.id %>
<%= room.name %>
<%= room.server_id %>
<%= room.meetingid %>
<%= room.private %>
<%= room.attendee_password %>
<%= room.moderator_password %>
<%= room.welcome_msg %>
<%= room.logout_url %>
<%= room.dial_number %>
<%= room.voice_bridge %>
<%= room.max_participants %>
<%= room.external %>
<%= room.param %>
<%= room.record %>
<%= room.duration %>
<% room.metadata.each do |metadata| %>
<%= metadata.attributes.except("id", "owner_id", "owner_type", "updated_at", "created_at") %>,
<% end %>
<%= link_to t('join'), join_bigbluebutton_room_path(room), :class => 'basic_button small_button blue_button' %>
<%= link_to t('bigbluebutton_rails.rooms.join_mobile'), join_mobile_bigbluebutton_room_path(room), :class => 'basic_button small_button blue_button' %>
<%= link_to t('bigbluebutton_rails.rooms.invite'), invite_bigbluebutton_room_path(room), :class => 'basic_button small_button blue_button' %>
<%= link_to t('edit'), edit_bigbluebutton_room_path(room), :class => 'basic_button small_button blue_button' %>
<%= link_to t('end'), end_bigbluebutton_room_path(room), :confirm => t('are_you_sure'), :class => 'basic_button small_button blue_button' %>
<%= link_to t('destroy'), bigbluebutton_room_path(room), :confirm => t('are_you_sure'), :method => :delete, :class => 'basic_button small_button blue_button' %>
<% end %>