<%= _('New friend') %>
<%= _('%s wants to connect to you as a friend.') % task.requestor.name %>
<% labelled_form_for('task', task, :url => { :action => 'close', :id => task.id } ) do |f| %>
<%= radio_button_tag(:decision, 'finish', true) %>
<%= _('Accept') %>
<%= radio_button_tag(:decision, 'cancel', false) %>
<%= _('Ignore') %>
<% button_bar do %>
<%= submit_button(:ok, _('OK')) %>
<% end %>
<% end %>