blob: 16539da63f2e8ae34ee6a1c13391957298da5439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<h1>Listing pages</h1>
<table>
<tr>
<th>Node</th>
<th>Title</th>
</tr>
<% for page in @pages %>
<tr>
<td><%=h page.node_id %></td>
<td><%=h page.title %></td>
<td><%= link_to 'Show', link_to_path(page.node.unique_path) %></td>
<td><%= link_to 'Edit', edit_page_path(page) %></td>
<td><%= link_to 'Destroy', page, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New page', new_page_path %>
|