Sms Groups
<%= view_table_open %>
<%= view_table_head_open %>
<%= view_table_row_open %>
<%= view_table_head_cell ('Descrizione') %>
<%= view_table_head_cell_span 3 %>
<%= view_table_row_close %>
<%= view_table_head_close %>
<%= view_table_body_open %>
<% @sms_groups.each do |sms_group| %>
<%= view_table_row_open %>
<%= view_table_cell (_open ( sms_group.descrizione) %>
<%= view_table_cell (_open ( link_to 'Show', sms_group) %>
<%= view_table_cell (_open ( link_to 'Edit', edit_sms_group_path(sms_group)) %>
<%= view_table_cell (_open ( link_to 'Destroy', sms_group, method: :delete, data: { confirm: 'Are you sure?' }) %>
<%= view_table_row_close %>
<% end %>
<%= view_table_body_close %>
<%= view_table_close %>
<%= link_to 'New Sms Group', new_sms_group_path %>