<% @page_title = "Edit settings for #{room_display_name(@room)}" %> <% content_for :nav do %>
<%= link_back_to_last_room_visited %>
<% end %>
<% users = @room.users.many? ? @room.users.without(Current.user) : @room.users %> <% users.each do | user | %>
<%= avatar_tag user, loading: :lazy %>
<%= user.name %>
<% end %>
<%= button_to rooms_direct_url(@room), method: :delete, class: "btn btn--negative center", aria: { label: "Delete Ping" }, data: { turbo_confirm: "Are you sure you want to delete this ping and all messages in it? This can’t be undone." } do %> <%= image_tag "trash.svg", aria: { hidden: "true" } %> Ping <% end %>