<% all_houses = @person.get_anytime_houses.sort_by{|h| h.descrizione} %>
<% currentperiod = daterange_current() %>
<% list_of_months = [] %>
<% (-18).upto(-1) do |m| %>
<% list_of_months << currentperiod.next_month(m) %>
<% end %>
<%= view_table_open %>
<%= view_table_row_open %>
<%= view_table_cell ( '' ) %>
<% list_of_months.each do |month| %>
<%= view_table_cell_center ( daterange_name(month, '
') ) %>
<% end %>
<%= view_table_row_close %>
<% all_houses.each do |house| %>
<%= view_table_row_open %>
<%= view_table_cell (link_to(house.descrizione, house_path(house))) %>
<% list_of_months.each do |month| %>
<%= view_table_cell_center ( @person.was_member_on(house.id, month) ? 'X' : '-' ) %>
<% end %>
<%= view_table_row_close %>
<% end %>
<%= view_table_close %>
<%= icon('chevron-up') %> Torna all'inizio della pagina