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