Sha256: 87c13eaae1a07fc6045345f99a99ab42e29c23a20d62e8ecee61e10bde0873ba
Contents?: true
Size: 567 Bytes
Versions: 7
Compression:
Stored size: 567 Bytes
Contents
<h1>Listing users</h1> <table> <tr> <th>Name</th> <th>#Comments</th> <th>Badges</th> <th>Points</th> </tr> <% @users.each do |user| %> <tr> <td><%= user.name %></td> <td><%= user.comments.count %></td> <td><%= user.show_badges %></td> <td><%= user.points %></td> <td><%= link_to 'Show', user %> - <%= link_to 'Edit', edit_user_path(user) %> - <%= link_to 'Destroy', user, data: { :confirm => 'Are you sure?' }, :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New User', new_user_path %>
Version data entries
7 entries across 7 versions & 1 rubygems