Sha256: cdb3294cd7eb70d853a36957e1b869a16ffa4607bce21c1202dd394ace5d0e31
Contents?: true
Size: 617 Bytes
Versions: 34
Compression:
Stored size: 617 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><%= user.points(category: 'vote') %></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
34 entries across 34 versions & 2 rubygems