<%= @room.name %> <% if current_user.main_room == @room %> <% end %>

<%= @room.sessions %> Sessions | <%= @recordings.length %> Recordings

Copy
<% if @is_running %>
In Progress
<% else %> <%= button_to "Start", start_room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %> <% end %>
<% if current_user.rooms.length > 1 %> <% current_user.rooms.each do |room| %>
<%= link_to room do %> <%= render "shared/components/room_block", room: room %> <% end %>
<% end %> <% end %>
<%= render "shared/sessions", recordings: @recordings %>