<% content_for :title, "Parties" %>
<% if notice.present? %>

<%= notice %>

<% end %>

Parties

<%= link_to new_party_path, class: "rounded-md px-3 py-2 bg-slate-800 hover:bg-green-500 text-white block font-medium" do %> <% end %>
<% @parties.each do |party| %>

<%= party.title %> 12

<%= truncate(party.location, length: 100) %>, <%= party.start_date.strftime("%d.%m.%Y") %> um <%= party.start_time.strftime("%H:%M") %>

<%= link_to edit_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 %>
<% end %>