% activities.each do |activity| %>
<%= time_ago_as_sentence(activity.created_at) + ' ' + _('ago') %>
<%= link_to activity.user.name, activity.user.url %> <%= describe activity %>
<%= button_to_remote(:delete, content_tag(:span, _('Remove')), :url =>{:action => 'remove_activity', :activity_id => activity.id}, :update => "profile-activity-item-#{activity.id}") if logged_in? && current_person == @profile %>