<%= HouseQecShare.label %>
<%= view_table_open %>
<%= view_table_head_open %>
<%= view_table_row_open %>
<%= view_table_head_cell_span 2 %>
<% if !pundit_user.has_house_policyscope?(HouseQecShare) %>
<%= view_table_head_cell link_to(HouseQecShare.human_attribute_name(:house_id), houses_path) %>
<% end %>
<%= view_table_head_cell HouseQecShare.human_attribute_name(:house_account_id) %>
<%= view_table_head_cell HouseQecShare.human_attribute_name(:created_at) %>
<%= view_table_head_cell HouseQecShare.human_attribute_name(:updated_at) %>
<%= view_table_row_close %>
<%= view_table_head_close %>
<%= view_table_body_open %>
<% @house_qec_shares.each do |house_qec_share| %>
<%= view_table_row_open %>
<% bg = nil %>
<%= view_table_cell ( iconbutton_view house_qec_share, '') %>
<%= view_table_cell ( iconbutton_edit edit_house_qec_share_path(house_qec_share), '') %>
<% if !pundit_user.has_house_policyscope?(HouseQecShare) %>
<%= view_table_cell ( house_qec_share.house_id ? link_to( house_qec_share.house.format_for_formselect, house_path(house_qec_share.house_id) ) : nil ), bg %>
<% end %>
<%= view_table_cell ( link_to(house_qec_share.house_account.format_for_formselect, house_account_path(house_qec_share.house_account_id)) ) %>
<%= view_table_cell house_qec_share.created_at.as_timestamp_dateonly %>
<%= view_table_cell house_qec_share.updated_at.as_timestamp_dateonly %>
<%= view_table_row_close %>
<% end %>
<%= view_table_body_close %>
<%= view_table_close %>
<%= iconbutton_new new_house_qec_share_path %>
<%= iconbutton_new new_house_qec_share_person_path %>