_conversation.html.erb 417 B

123456789101112131415
  1. <tr>
  2. <td>
  3. <%= link_to conversation.name, conversation %>
  4. </td>
  5. <td>
  6. <% conversation.users.each do |user| %>
  7. <%= link_to user_url(user), data_toggle: "tooltip", title: user.name do %>
  8. <%= image_tag user.picture.tiny.url %>
  9. <% end %>
  10. <% end %>
  11. </td>
  12. <td>
  13. <b><%= conversation.messages.last.user.name %>:</b> <%= truncate(conversation.messages.last.content) %>
  14. </td>
  15. </tr>