<%= @room.name %>
<% if current_user.main_room == @room %>
<% end %>
<%= @room.sessions %> Sessions | <%= @recordings.length %> Recordings
<%= link_to "Start", start_room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %>
<% (current_user.rooms - [@room]).each do |room| %>
<%= link_to room do %>
<%= render "shared/components/room_block", room: room %>
<% end %>
<% end %>