index.html.erb 473 B

123456789101112131415161718192021
  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>
  21. <%= link_to "New conversation", new_conversation_path, class: "btn btn-primary btn-lg btn-block" %>