Sha256: e350cec1134aa70b8e171f5a636d35f606952a1034865fc10c4301338cab2727
Contents?: true
Size: 444 Bytes
Versions: 5
Compression:
Stored size: 444 Bytes
Contents
<h1>Listing Zoos</h1> <table> <tr> <th> </th> </tr> <% for zoo in @zoos %> <tr> <td> </td> <td><%= link_to("Show", zoos_show_url(:id => zoo.id)) %></td> <td><%= link_to("Edit", zoos_edit_url(:id => zoo.id)) %></td> <td><%= link_to("Delete", zoos_delete_url(:id => zoo.id), :method => :delete, :confirm => "Are you sure?") %></td> </tr> <% end %> </table> <br /> <%= link_to("New Zoo", zoos_new_url) %>
Version data entries
5 entries across 5 versions & 2 rubygems