Sha256: 851aa915933ed57e9158d00fdf36c5115bee1981b0356c52e36361546e7ff2cc
Contents?: true
Size: 485 Bytes
Versions: 4
Compression:
Stored size: 485 Bytes
Contents
<h1>Listing alligators</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @alligators.each do |alligator| %> <tr> <td><%= alligator.name %></td> <td><%= link_to 'Show', alligator %></td> <td><%= link_to 'Edit', edit_alligator_path(alligator) %></td> <td><%= link_to 'Destroy', alligator, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Alligator', new_alligator_path %>
Version data entries
4 entries across 4 versions & 1 rubygems