Sha256: 33eed0478dac23713e5c3727c58d26c405569a523b3895b02aca96b4e97e0eec
Contents?: true
Size: 397 Bytes
Versions: 15
Compression:
Stored size: 397 Bytes
Contents
<h1>Listing users</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @users.each do |user| %> <tr> <td><%= link_to 'Show', user %></td> <td><%= link_to 'Edit', edit_user_path(user) %></td> <td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New User', new_user_path %>
Version data entries
15 entries across 15 versions & 2 rubygems