<% content_for :title, "Räume" %> <% content_for :top_bar_actions do %> <%= link_to new_room_path, data: { turbo_frame: "_top" }, class: "py-2 px-4 text-sm font-semibold rounded-lg bg-blue-600 text-white hover:bg-blue-700 flex items-center gap-1.5 shadow-sm transition" do %> Raum anlegen <% end %> <% end %> <%= render "items/search_bar", show_csv: false %> <%= turbo_frame_tag "items_list_frame" do %> <% if @rooms.any? %>
<% @rooms.each do |room| %>

<%= room.name %>

<%= room.building %> Etage <%= room.floor %>
<%= room.items.count %> <%= room.items.count == 1 ? "Gerät" : "Geräte" %>
<%= link_to room_path(room), data: { turbo_frame: "_top" }, class: "w-8 h-8 text-gray-500 hover:text-blue-600 hover:bg-blue-50 rounded-lg border border-gray-200 bg-white shadow-sm flex items-center justify-center transition flex-initial shrink-0", title: "Inventar anzeigen" do %> <% end %> <%= link_to edit_room_path(room), data: { turbo_frame: "_top" }, class: "w-8 h-8 text-gray-500 hover:text-amber-600 hover:bg-amber-50 rounded-lg border border-gray-200 bg-white shadow-sm flex items-center justify-center transition flex-initial shrink-0", title: "Bearbeiten" do %> <% end %>
<% end %>
<% else %>

Keine passenden Gebäude oder Büros gefunden.

<% end %> <% end %>