Sha256: 487614db1da20909f840cbafbb2c4d1833d06b65ec986d6a4d7892f2f3815b34
Contents?: true
Size: 558 Bytes
Versions: 3
Compression:
Stored size: 558 Bytes
Contents
<h1>Listing users</h1> <table> <tr> <th>Name</th> <th>Email</th> <th>Login</th> <th>Password</th> </tr> <% @users.each do |user| %> <tr> <td><%=h user.name %></td> <td><%=h user.email %></td> <td><%=h user.login %></td> <td><%=h 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
3 entries across 3 versions & 1 rubygems