diaspora/app/views/friends/index.html.haml
2010-06-22 23:11:55 -07:00

16 lines
348 B
Text

- title "Friends"
%table
%tr
%th real name
%th email
%th url
- for friend in @friends
%tr
%td= friend.real_name
%td= friend.email
%td= friend.url
%td= link_to 'Show', friend
%td= link_to 'Destroy', friend, :confirm => 'Are you sure?', :method => :delete
%p= link_to "New Friend", new_friend_path