<% content_for :title, "Places" %>
<%= link_to 'Visits', visits_path(status: :confirmed), role: 'tab', class: "tab font-bold text-xl #{active_visit_places_tab?('visits')}" %> <%= link_to 'Places', places_path, role: 'tab', class: "tab font-bold text-xl #{active_visit_places_tab?('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 %> <%= human_datetime(place.created_at) %> <%= "#{place.lat}, #{place.lon}" %> <%= link_to 'Delete', place, data: { turbo_confirm: "Are you sure? Deleting a place will result in deleting all visits for this place.", turbo_method: :delete }, method: :delete, class: "px-4 py-2 bg-red-500 text-white rounded-md" %>
<% end %>