<%= @trip.name %>
<%= human_date(@trip.started_at) %> - <%= human_date(@trip.ended_at) %>
<% if @trip.countries.any? || @trip.visited_countries.present? %>
<%= render "trips/countries", trip: @trip %>
<% else %>
Countries are being calculated...
<% end %>
<%= link_to "Edit this trip", edit_trip_path(@trip), class: "btn" %>
<%= link_to "Destroy this trip",
trip_path(@trip),
data: {
turbo_confirm: "Are you sure?",
turbo_method: :delete
},
class: "btn" %>
<%= link_to "Back to trips", trips_path, class: "btn" %>