diaspora/app/views/bookmarks/_bookmark.html.haml
2010-06-29 14:34:33 -07:00

14 lines
425 B
Text

%li.message{:id => post.id, :class => ("mine" if mine?(post))}
%span.from
= link_to_person post.person
%b shared a link
%br
= post.title
%a{:href => "#{post.link}"}
= post.link
%div.time= link_to "#{time_ago_in_words(post.updated_at)} ago", bookmark_path(post)
- if mine?(post)
.destroy_link
= link_to 'Delete', status_message_path(post), :confirm => 'Are you sure?', :method => :delete