<%= @city.localized_name %>
<%= "#{@city&.country&.emoji + " " || ""}#{@city&.country&.name}" %>
<%= @city&.state&.name %>
<%= render partial: 'cities/stat_card', collection: [
{
icon: 'temperature',
title: 'Latest Weather',
value: "#{@city.latest_weather_art&.temperature}°C",
desc: @city.latest_weather_art&.description
},
{
icon: 'location',
title: 'Coordinates',
value: "#{@city.latitude}°N, #{@city.longitude}°E",
desc: 'Geographical Location'
},
{
icon: 'history',
title: 'Records',
value: @city.weather_arts.count,
desc: 'Total Weather Arts'
}
], as: :stat %>
<%= render 'shared/map', city: @city %>
<%= render 'cities/admin_panel' %>