<% content_for :title, "Kategorien & Typen" %>
<% if @categories.any? %>
<% @categories.each do |category| %>

<%= category.name %>

Gesamt: <%= category.items.count %>
<%= category.items_in_storage_count %>
<%= category.items_with_users_count %>
<%= category.items_in_rooms_count %>
<%= link_to category_path(category), class: "text-blue-600 hover:text-blue-700 transition" do %> Liste öffnen → <% end %> <%= link_to "Bearbeiten", edit_category_path(category), class: "text-gray-400 hover:text-gray-600 transition" %>
<% end %>
<% else %>

Bisher sind keine Kategorien hinterlegt.

<% end %>