Sha256: 16095321a2d240f299f23156afdf26910d32f9bfeb82b71c836ba8e9374f671a
Contents?: true
Size: 619 Bytes
Versions: 2
Compression:
Stored size: 619 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Users</h1> <table> <thead> <tr> <th>Name</th> <th>Password digest</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td><%= user.name %></td> <td><%= user.password_digest %></td> <td><%= link_to 'Show', user %></td> <td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td> <td><%= link_to 'Authenticate', user_auth_path(user) %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New User', new_user_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pythia-0.0.3-x86_64-linux | test/dummy/app/views/users/index.html.erb |
pythia-0.0.2-x86_64-linux | test/dummy/app/views/users/index.html.erb |