blob: bbf11c0337a4352271e3bbca60743e117ae0d7c0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<h1>Nodes</h1>
<table>
<% @nodes.each do |node| %>
<tr>
<td><%= link_to node.unique_name, node_path(node) %></td>
<td><%= link_to 'Edit', edit_node_path(node) %></td>
</tr>
<% end %>
</table>
|