root/app/views/galleries/index.html.erb
@
1
Revision 1, 377 bytes (checked in by falcon, 17 years ago) |
---|
Line | |
---|---|
1 | <h1>Listing galleries</h1> |
2 | |
3 | <table> |
4 | <tr> |
5 | </tr> |
6 | |
7 | <% for gallery in @galleries %> |
8 | <tr> |
9 | <td><%= link_to 'Show', gallery %></td> |
10 | <td><%= link_to 'Edit', edit_gallery_path(gallery) %></td> |
11 | <td><%= link_to 'Destroy', gallery, :confirm => 'Are you sure?', :method => :delete %></td> |
12 | </tr> |
13 | <% end %> |
14 | </table> |
15 | |
16 | <br /> |
17 | |
18 | <%= link_to 'New gallery', new_gallery_path %> |
Note: See TracBrowser
for help on using the browser.