Sha256: 9242d522f4063ba7d0a149f317e043f313db710606abc0868e5d858a2da70992
Contents?: true
Size: 677 Bytes
Versions: 2
Compression:
Stored size: 677 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Users</h1> <table> <thead> <tr> <th>Email</th> <th>Crypted password</th> <th>Salt</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td><%= user.email %></td> <td><%= user.crypted_password %></td> <td><%= user.salt %></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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bigmouth-0.0.2 | test/dummy/app/views/users/index.html.erb |
bigmouth-0.0.1 | test/dummy/app/views/users/index.html.erb |