Sha256: 8974a1a5c3bb88e8c3957648fa2056c95a1d1f48985850cb71e7eaafc4ec2387
Contents?: true
Size: 665 Bytes
Versions: 4
Compression:
Stored size: 665 Bytes
Contents
<h1>Listing users</h1> <table> <thead> <tr> <th>Username</th> <th>Password</th> <th>First name</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td><%= user.username %></td> <td><%= user.password %></td> <td><%= user.first_name %></td> <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
4 entries across 4 versions & 1 rubygems