<% content_for :title, @trip.name %>

<%= @trip.name %>

<%= human_date(@trip.started_at) %> - <%= human_date(@trip.ended_at) %>

<% if @trip.countries.any? %>

<%= "#{@trip.countries.join(', ')} (#{@trip.distance} #{DISTANCE_UNIT})" %>

<% end %>
<%= @trip.notes.body %>
<% if @photos.any? %> <% @photos.each_slice(4) do |slice| %>
<% slice.each do |photo| %>
<% end %>
<% end %> <% end %> <% if @trip.photos_sources.any? %>
<% @trip.photos_sources.each do |source| %> <%= link_to "More photos on #{source}", photo_search_url(source, current_user.settings, @trip.started_at, @trip.ended_at), class: "btn btn-primary mt-2", target: '_blank' %> <% end %>
<% 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" %>