Sha256: 601fc9334fa28f890200d64328ff995c17b3fabed08b6e3bfc76cd5bc728a77d
Contents?: true
Size: 596 Bytes
Versions: 8
Compression:
Stored size: 596 Bytes
Contents
<h2>Listing accounts</h2> <table> <tr> <th>Name</th> </tr> <% @accounts.each do |account| %> <tr> <td><%=h account.name %></td> <td><%= link_to 'Show', account %></td> <td><%= link_to 'Edit', edit_account_path(account) %></td> <td><%= link_to 'Destroy', account, :confirm => 'Are you sure?', :method => :delete %></td> <td><%= link_to '↑', move_up_account_path(account) %></td> <td><%= link_to '↓', move_down_account_path(account) %></td> </tr> <% end %> </table> <br /> <%= link_to 'New account', new_account_path %> <%= link_to 'back', root_path %>
Version data entries
8 entries across 8 versions & 2 rubygems