17 lines
645 B
Text
17 lines
645 B
Text
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
.conversation_participants
|
|
.right
|
|
= link_to(raw("<i class='entypo trash'></i>"), conversation_visibility_path(conversation),
|
|
method: 'delete', data: { confirm: "#{t('.delete')}?" }, class: "remove")
|
|
|
|
%h3{ class: direction_for(conversation.subject) }
|
|
= conversation.subject
|
|
|
|
- for participant in conversation.participants
|
|
= person_image_link(participant, size: :thumb_small)
|
|
|
|
.span-15.last
|
|
= render partial: 'messages', locals: { conversation: conversation }
|