mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-13 10:41:38 -05:00
10 lines
270 B
Text
10 lines
270 B
Text
<% if @countries_and_cities.any? %>
|
|
<% @countries_and_cities.each do |country, cities| %>
|
|
<h2 class="text-lg font-semibold"><%= country %></h2>
|
|
<ul>
|
|
<% cities.each do |city| %>
|
|
<li><%= city %></li>
|
|
<% end %>
|
|
</ul>
|
|
<% end %>
|
|
<% end %>
|