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

<%= @trip.name %>

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

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

<%= @trip.countries.join(', ') %>

<% end %>
<%= @trip.field_notes.body %>
<% if @photos.any? %> <% @photos.each_slice(4) do |slice| %>
<% slice.each do |photo| %>
<% end %>
<% end %> <% end %>
<%= link_to "More photos on Immich", immich_search_url(current_user.settings['immich_url'], @trip.started_at, @trip.ended_at), class: "btn btn-primary", target: '_blank' %>
<%= 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" %>