<% tasks.each do |task| %>
<%= link_to task.organization.name, task.organization, class: "font-medium text-zinc-900 hover:underline dark:text-zinc-100" %> <%= priority_badge(task.priority) %> <%= task.task_type_label %>
<%= task.title %>
<%= task.contact&.full_name || "—" %> · <%= format_dt(task.due_at) %> <% if task.assigned_user %>· <%= task.assigned_user.full_name %><% end %>
<%= button_to "Completa", complete_task_path(task), method: :patch, class: "rounded-md bg-emerald-600 px-3 py-1.5 text-xs font-medium text-white hover:bg-emerald-700" %> <%= link_to "Apri", task.organization, class: "rounded-md border border-zinc-300 px-3 py-1.5 text-xs font-medium text-zinc-700 hover:bg-zinc-50 dark:border-zinc-600 dark:text-zinc-200 dark:hover:bg-zinc-800" %>
<% end %> <% if tasks.blank? %>
Nessun task
<% end %>