index.html.erb 478 B

1234567891011121314151617181920212223242526
  1. <% provide(:title, "Users") %>
  2. <h1>Users</h1>
  3. <table width="100%" class="table table-striped table-bordered table-hover">
  4. <thead>
  5. <tr>
  6. <th>
  7. Picture
  8. </th>
  9. <th>
  10. Name
  11. </th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <% for user in @users %>
  16. <tr>
  17. <td>
  18. <%= image_tag user.picture.small.url %>
  19. </td>
  20. <td>
  21. <%= link_to user.name, user %>
  22. </td>
  23. </tr>
  24. <% end %>
  25. </tbody>
  26. </table>