<%= @city.name %>

<%= link_to "Back to Cities", cities_path, class: "btn btn-ghost" %>
Latitude
<%= @city.latitude %>
Longitude
<%= @city.longitude %>

Weather Art History

<% @city.weather_arts.order(weather_date: :desc).each do |art| %>
<% if art.image.attached? %> <%= image_tag art.image, class: "w-full h-48 object-cover" %> <% end %>

<%= art.weather_date.strftime("%Y-%m-%d") %>

<%= art.description %>

Temperature
<%= art.temperature %>°C
Humidity
<%= art.humidity %>%
<%= link_to "View Details", city_weather_art_path(@city, art), class: "btn btn-primary" %>
<% end %>