Sha256: 2a9403d2387ceff4995280108394bdbb07c0c187cdcd7d1f1664a70e87dd9988
Contents?: true
Size: 469 Bytes
Versions: 285
Compression:
Stored size: 469 Bytes
Contents
<h1>Listing users</h1> <table> <tr> <th>Email</th> <th>Age</th> </tr> <% for user in @users %> <tr> <td><%=h user.email %></td> <td><%=h user.age %></td> <td><%= link_to 'Show', user_path(user) %></td> <td><%= link_to 'Edit', edit_user_path(user) %></td> <td><%= link_to 'Destroy', user_path(user), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New user', new_user_path %>
Version data entries
285 entries across 171 versions & 30 rubygems