Sha256: 42223020ee822489f6a071e0d69928df4adbea33ed3025c04a285ee94310e58d
Contents?: true
Size: 482 Bytes
Versions: 70
Compression:
Stored size: 482 Bytes
Contents
<h1>Listing somethings</h1> <table> <tr> <th>Title</th> </tr> <% for something in @somethings %> <tr> <td><%=h something.title %></td> <td><%= link_to 'Show', something_path(something) %></td> <td><%= link_to 'Edit', edit_something_path(something) %></td> <td><%= link_to 'Destroy', something_path(something), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New something', new_something_path %>
Version data entries
70 entries across 70 versions & 22 rubygems