diaspora/app/views/status_messages/_status_message.html.haml
2010-06-24 20:45:49 -07:00

11 lines
339 B
Text

%li.message{:class => ("mine" if mine?(post))}
%span.from
= link_to_person post.person
= post.message
%div.time
= link_to "#{time_ago_in_words(post.updated_at)} ago", status_message_path(post)
- if mine?(post)
= link_to 'Destroy', status_message_path(post), :confirm => 'Are you sure?', :method => :delete