Sha256: ee250c0ad38a0d4a55b69a8587fe43ac350c747b24bc0c9f8c69391e1d6ec897
Contents?: true
Size: 633 Bytes
Versions: 2
Compression:
Stored size: 633 Bytes
Contents
<h1>Listing users</h1> <table> <tr> <th>Name</th> <th>Email</th> <th>Password</th> <th>Password confirmation</th> <th></th> <th></th> <th></th> </tr> <% @users.each do |user| %> <tr> <td><%= user.name %></td> <td><%= user.email %></td> <td><%= user.password %></td> <td><%= user.password_confirmation %></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 %> </table> <br /> <%= link_to 'New User', new_user_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
auth_eng-0.0.2 | app/views/auth_eng/users/index.html.erb |
auth_eng-0.0.1 | app/views/auth_eng/users/index.html.erb |