Sha256: 2dc44fd9b962cf0a604ac032ace63b45eafce5833d62e40f8024979196c449b6
Contents?: true
Size: 456 Bytes
Versions: 36
Compression:
Stored size: 456 Bytes
Contents
<h1>Listing Users</h1> <table> <tr> <th>Login</th> <th>Name</th> </tr> <% @users.each do |user| %> <tr> <td><%=h user.login %></td> <td><%=h user.full_name %></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 35 versions & 1 rubygems