19 lines
388 B
Text
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
|