<%= party.title %>
<%= party.attendents.count %>
<%= truncate(party.location, length: 100) %>,
<%= party.start_date.strftime("%d.%m.%Y") %>
um <%= party.start_time.strftime("%H:%M") %>
<%= link_to party_path(party),
class: "hover:bg-green-400 hover:text-white font-medium rounded border px-2 py-1" do %>
<% end %>
<%= link_to edit_party_path(party),
class: "hover:bg-green-400 hover:text-white font-medium rounded border px-2 py-1" do %>
<% end %>
<%= button_to party_path(party),
method: :delete,
data: { confirm: "Löschen?" },
class: "hover:bg-red-400 hover:text-white font-medium rounded border px-2 py-1" do %>
<% end %>