<% content_for :title, @trip.name %> <%= turbo_stream_from "trip_#{@trip.id}" %>

<%= @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 %>
<%= render "trips/path", trip: @trip, current_user: current_user %>
<%= @trip.notes.body %>
<% if @photo_previews.any? %> <% @photo_previews.each_slice(4) do |slice| %>
<% slice.each do |photo| %>
<% end %>
<% end %> <% end %> <% if @photo_sources.any? %>
<% @photo_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" %>