This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/app/views/admin/pages/index.html.erb

18 lines
400 B
Plaintext
Raw Normal View History

<h1>Listing pages</h1>
<table>
<tr>
</tr>
<% @pages.each do |page| %>
<tr>
<td><%= link_to page.name, admin_page_path(page) %></td>
<td><%= link_to 'Edit', edit_admin_page_path(page) %></td>
<td><%= link_to 'Destroy', admin_page_path(page), :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New pages', new_admin_page_path %>