<% all_count = @all_year_months_data.count %>
<% @all_year_months_data.each_with_index do |(year_month,total_seconds,all_infos), i| %>
<%= year_month %>
<%= t("ruling_timer.total") %>: <%= RulingTimerTemp.transform_second_to_time(total_seconds) %>
<%= t("ruling_timer.date") %> |
<%= t("ruling_timer.work_time") %> |
<% all_infos.each do |info| %>
<%= info[:date] %> |
<%= info[:work_time_str] %> |
<% end %>
<% if i < all_count - 1 %>
<% end %>
<% end %>