diaspora/app/views/friends/index.html.haml
2010-06-28 21:56:58 -07:00

19 lines
388 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
#pagination
= will_paginate @friends