diff --git a/app/views/status_messages/index.html.haml b/app/views/status_messages/index.html.haml index 516316e5e..222df2dee 100644 --- a/app/views/status_messages/index.html.haml +++ b/app/views/status_messages/index.html.haml @@ -9,4 +9,19 @@ %td= link_to 'Show', status_message %td= link_to 'Destroy', status_message, :confirm => 'Are you sure?', :method => :delete + +%h2 Friends +%table + %tr + %th username + %th url + - for friend in @friends + %tr + %td= friend.username + %td= friend.url + %td= link_to 'Show', friend + %td= link_to 'Destroy', friend, :confirm => 'Are you sure?', :method => :delete + + + %p= link_to "New Status Message", new_status_message_path