<%= Territorio.label %>

<%= page_entries_info @territorios %>, <%= select_per_page(params, session) %>
<% if @territorios %> <%= will_paginate @territorios %> <%= view_table_open %> <%= view_table_head_open %> <%= view_table_row_open %> <%= view_table_head_cell_span 2 %> <%= view_table_head_cell ('Descrizione') %> <%= view_table_head_cell ('Targa') %> <%= view_table_head_cell ('Auto') %> <%= view_table_head_cell ('Indirizzo') %> <%= view_table_head_cell (link_to('Persona', people_path )) %> <%= view_table_head_cell ('Delibera') %> <%= view_table_head_cell ('Data') %> <%= view_table_head_cell ('Fine delibera') %> <%= view_table_head_cell ('Data fine') %> <%= view_table_head_cell ('Attiva') %> <%= view_table_row_close %> <%= view_table_head_close %> <%= view_table_body_open %> <% @territorios.each do |territorio| %> <%= view_table_row_open %> <%= view_table_cell ( iconbutton_view territorio, nil) %> <%= view_table_cell ( iconbutton_edit edit_territorio_path(territorio),nil) %> <%#= view_table_cell ( iconbutton_delete territorio, nil) %> <%= view_table_cell ( territorio.descrizione) %> <%= view_table_cell ( territorio.targa) %> <%= view_table_cell ( territorio.auto) %> <%= view_table_cell ( territorio.indirizzo) %> <%= view_table_cell ( territorio.person.present? ? link_to( territorio.person.format_for_formselect, person_path(territorio.person) ) : nil) %> <%= view_table_cell ( territorio.delibera) %> <%= view_table_cell ( territorio.data.present? ? territorio.data.to_dmy : nil ) %> <%= view_table_cell ( territorio.delibera_fine) %> <%= view_table_cell ( territorio.data_fine? ? territorio.data_fine.to_dmy : nil ) %> <%= view_table_cell ( territorio.attiva) %> <%= view_table_row_close %> <% end %> <%= view_table_body_close %> <%= view_table_close %> <%= will_paginate @territorios %> <% end %>