Opportunità
<%= link_to "Export CSV", opportunities_path(format: :csv), class: "#{btn_secondary} flex-1 sm:flex-none" %>
<%= link_to "Nuova", new_opportunity_path, class: "#{btn_primary} flex-1 sm:flex-none" %>
<% @opportunities.each do |opp| %>
<%= link_to opp.organization, class: "#{card_class} block p-4 active:bg-zinc-50 dark:active:bg-zinc-800" do %>
<%= opp.organization.name %>
<%= opp.name %>
<%= stage_badge(opp.pipeline_stage) %>
<%= format_money(opp.estimated_value) %> · <%= opp.assigned_user&.full_name || "—" %>
<% end %>
<% end %>