12 lines
378 B
Text
12 lines
378 B
Text
%li.message{:id => post.id, :class => ("mine" if mine?(post))}
|
|
%span.from
|
|
= link_to_person post.person
|
|
= post.message
|
|
%div.time
|
|
= link_to(how_long_ago(post), status_message_path(post))
|
|
= render "comments/comments", :post => post
|
|
- if mine?(post)
|
|
= link_to 'Destroy', status_message_path(post), :confirm => 'Are you sure?', :method => :delete
|
|
|
|
|
|
|