Recipients
<%= view_table_open %>
<%= view_table_head_open %>
<%= view_table_row_open %>
<%= view_table_head_cell ('Person') %>
<%= view_table_head_cell ('Sms group') %>
<%= view_table_head_cell_span 3 %>
<%= view_table_row_close %>
<%= view_table_head_close %>
<%= view_table_body_open %>
<% @recipients.each do |recipient| %>
<%= view_table_row_open %>
<%= view_table_cell (_open ( recipient.person) %>
<%= view_table_cell (_open ( recipient.sms_group) %>
<%= view_table_cell (_open ( link_to 'Show', recipient) %>
<%= view_table_cell (_open ( link_to 'Edit', edit_recipient_path(recipient)) %>
<%= view_table_cell (_open ( link_to 'Destroy', recipient, method: :delete, data: { confirm: 'Are you sure?' }) %>
<%= view_table_row_close %>
<% end %>
<%= view_table_body_close %>
<%= view_table_close %>
<%= link_to 'New Recipient', new_recipient_path %>