Sha256: 61b663c2776713a1cbbdf3a3bf87ee0b79112db9653554bb5ad41d17842eb4bf
Contents?: true
Size: 481 Bytes
Versions: 25
Compression:
Stored size: 481 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Users</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @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 %> </tbody> </table> <br> <%= link_to 'New User', new_user_path %>
Version data entries
25 entries across 25 versions & 2 rubygems