<%= HouseAccount.label %>

<%= view_table_open %> <%= view_table_head_open %> <%= view_table_row_open %> <%= view_table_head_cell_span 2 %> <%= view_table_head_cell HouseAccount.human_attribute_name(:codice) %> <%= view_table_head_cell HouseAccount.human_attribute_name(:descrizione) %> <%= view_table_head_cell HouseAccount.human_attribute_name(:is_system) %> <%= view_table_head_cell HouseAccount.human_attribute_name(:view_order) %> <%= view_table_row_close %> <%= view_table_head_close %> <%= view_table_body_open %> <% @house_accounts.each do |house_account| %> <%= view_table_row_open %> <% bg = nil %> <%= view_table_cell ( iconbutton_view house_account, '') %> <%= view_table_cell ( iconbutton_edit edit_house_account_path(house_account), '') %> <%= view_table_cell ( house_account.codice ) %> <%= view_table_cell ( house_account.descrizione ) %> <%= view_table_cell ( check_box_tag :is_system, :is_system, house_account.is_system, disabled: true) %> <%= view_table_cell ( house_account.view_order ) %> <%= view_table_row_close %> <% end %> <%= view_table_body_close %> <%= view_table_close %>
<%= iconbutton_new new_house_account_path %>