From db44081186bc3a4b2e1d244cd0b1431a099b0c0f Mon Sep 17 00:00:00 2001 From: maxwell <maxwell@joindiaspora.com> Date: Mon, 14 Jun 2010 13:17:20 -0700 Subject: [PATCH] MS IZ DG completed friends should be displayed on dashboard --- app/views/status_messages/index.html.haml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/app/views/status_messages/index.html.haml b/app/views/status_messages/index.html.haml index 516316e5e9..222df2deeb 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 -- GitLab