<%= SrgAdactype.label %>
<%= view_table_open %>
<%= view_table_head_open %>
<%= view_table_row_open %>
<%= view_table_head_cell_span 2 %>
<%= view_table_head_cell SrgAdactype.human_attribute_name(:codice) %>
<%= view_table_head_cell SrgAdactype.human_attribute_name(:attiva) %>
<%= view_table_head_cell SrgAdactype.human_attribute_name(:descrizione) %>
<%= view_table_head_cell SrgAdactype.human_attribute_name(:srg_qec_fund_id) %>
<%= view_table_row_close %>
<%= view_table_head_close %>
<%= view_table_body_open %>
<% @srg_adactypes.each do |srg_adactype| %>
<%= view_table_row_open %>
<%= view_table_cell ( iconbutton_view srg_adactype, '') %>
<%= view_table_cell ( iconbutton_edit edit_srg_adactype_path(srg_adactype), '') %>
<%#= view_table_cell ( iconbutton_delete srg_adactype, '') %>
<%= view_table_cell ( srg_adactype.codice) %>
<%= view_table_cell ( check_box_tag :attiva, :attiva, srg_adactype.attiva, disabled: true) %>
<%= view_table_cell ( srg_adactype.descrizione) %>
<%= view_table_cell ( srg_adactype.srg_qec_fund.format_for_formselect) %>
<%= view_table_row_close %>
<% end %>
<%= view_table_body_close %>
<%= view_table_close %>
<%= iconbutton_new new_srg_adactype_path, 'Nuova riga' %>