diaspora/app/views/comments/_comment.html.haml
2010-11-08 18:19:55 -08:00

15 lines
565 B
Text

-# Copyright (c) 2010, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
%li.comment
= person_image_link(post.person)
.content
.from
= link_to post.person.real_name, post.person
= markdownify(post.text)
- if current_user.owns?(post)
.right
= link_to t('delete'), comment_path(post), :confirm => t('are_you_sure'), :method => :delete, :remote => true, :class => "delete"
%div.time
= "#{time_ago_in_words(post.updated_at)} #{t('ago')}"