• <%= avatar_tag bot, loading: :lazy %>
    <%= bot.name %>
    <%= link_to edit_account_bot_path(bot), class: "btn flex-item-justify-end", style: "view-transition-name: chat-bot-#{ bot.id }" do %> <%= image_tag "pencil.svg", aria: { hidden: "true" }, size: 20 %> Edit <%= bot.name %> <% end %>
    <% bot.rooms.without_directs.ordered.each do |room| %>
    <%= room_display_name(room) %> <% curl_text_line = "curl -d 'Hello!' #{room_bot_messages_url(room, bot.bot_key)}" %>
    <%= image_tag "messages-outlined.svg", aria: { hidden: "true" }, size: 24, class: "colorize--black" %>
    <%= button_to_copy_to_clipboard(curl_text_line) do %> <%= image_tag "copy-paste.svg", aria: { hidden: "true" }, size: 20 %> Copy message command <% end %>
    <% curl_upload_line = %[curl -F "attachment=@/path/to/file" #{room_bot_messages_url(room, bot.bot_key)}] %>
    <%= image_tag "attachment.svg", aria: { hidden: "true" }, size: 24, class: "colorize--black" %>
    <%= button_to_copy_to_clipboard(curl_upload_line) do %> <%= image_tag "copy-paste.svg", aria: { hidden: "true" }, size: 20 %> Copy attachment command <% end %>
    <% end %>