index.html.erb 373 B

1234567891011121314151617181920
  1. <% provide(:title, "Conversations") %>
  2. <h1>Conversations</h1>
  3. <table width="100%" class="table table-striped table-bordered table-hover">
  4. <thead>
  5. <tr>
  6. <th>
  7. Conversation
  8. </th>
  9. <th>
  10. Participants
  11. </th>
  12. <th>
  13. Last message
  14. </th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <%= render @conversations %>
  19. </tbody>
  20. </table>