Sha256: e350cec1134aa70b8e171f5a636d35f606952a1034865fc10c4301338cab2727

Contents?: true

Size: 444 Bytes

Versions: 5

Compression:

Stored size: 444 Bytes

Contents

<h1>Listing Zoos</h1>

<table>
  <tr>
    <th>&nbsp;</th>
  </tr>

<% for zoo in @zoos %>
  <tr>
    <td>&nbsp;</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

Version Path
mack-active_record-0.5.0 test/fixtures/zoo_no_cols/index.html.erb.fixture
mack-active_record-0.5.1 test/fixtures/zoo_no_cols/index.html.erb.fixture
mack-active_record-0.5.5 test/fixtures/zoo_no_cols/index.html.erb.fixture
mack-data_mapper-0.5.0 test/fixtures/zoo_no_cols/index.html.erb.fixture
mack-data_mapper-0.5.1 test/fixtures/zoo_no_cols/index.html.erb.fixture