summaryrefslogtreecommitdiffhomepage
path: root/app/views/nodes/index.html.erb
blob: 2a148803701ff561251e9dc22cff0193ca634143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<h1> suh </h1>

<% @rootnodes.each do |rootnode| %>
  <tr>
    <td>PARENT: <%= rootnode.title %></td>
  </tr><br>
  <em>
    <% rootnode.children.each do |node| %>
      <tr>
        <td>CHILD: <%= node[:title] %></td>
      </tr><br>
    <% end %>
  </em>
<% end %>