<% content_for :title, "Places" %>

Places

<% if @places.empty? %>

Hello there!

Here you'll find your places, created by Visits suggestion process. But now there are none.

<% else %>
<%= paginate @places %>
<% @places.each do |place| %> <% end %>
Name Created at Coordinates Actions
<%= place.name %> <%= place.created_at.strftime('%Y-%m-%d %H:%M:%S') %> <%= place.to_coordinates.map(&:to_f) %> <%= link_to 'Delete', place, data: { confirm: "Are you sure?", turbo_confirm: "Are you sure?", turbo_method: :delete }, method: :delete, class: "px-4 py-2 bg-red-500 text-white rounded-md" %>
<% end %>