blob: 4b28c9be7255ada18255f3b42aabd5c7bdee8bfe (
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', content_path(:page_path => page.node.unique_path) %></td>
<td><%= link_to 'Edit', edit_page_path(page) %></td>
<td><%= link_to 'Destroy', page, :data => { :confirm => 'Are you sure?' }, :method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New page', new_page_path %>
|