<%= title %>

<% notes.by_file_label.each do |file, per_label| %>

<%= file %>

    <% per_label.each do |label, lnotes| %>
  1. <%= label %>

      <% lnotes.each do |note| %>
    1. <%= h note.textline %> <%= note.line %> <% if note.code? %>
      <%= note.code %>
      
      <% end %>
    2. <% end %>
  2. <% end %>
<% end %>