diff --git a/app/views/status_messages/index.html.haml b/app/views/status_messages/index.html.haml
index 516316e5e982e74c5e831ee334d10f2db560a83d..222df2deeba79b3a0a08d1b00a19fda4ca1cd3d8 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