Visualizza <%= PersonNote.label(1) %>
<%= iconbutton_backtoindex person_notes_path, "Vai all'elenco", @filter_params %>
<%#= iconbutton_new new_srg_qec_path, 'Nuova riga per questo periodo', @filter_params %>
<%= edit_table_open %>
<%= edit_table_row (PersonNote.human_attribute_name(:person_id)),(link_to(@person_note.person.dh_person_name, person_path(@person_note.person_id)) ) %>
<%= edit_table_row (PersonNote.human_attribute_name(:person_note_type_id)),(link_to(@person_note.person_note_type.descrizione, person_note_type_path(@person_note.person_note_type_id) )) %>
<%= edit_table_row (PersonNote.human_attribute_name(:notes)),(text_area_tag :person_note_notes, @person_note.notes, cols: 50, rows: 10, disabled: true) %>
<%= edit_table_row (PersonNote.human_attribute_name(:date_start)),(@person_note.date_start.to_dmy) %>
<%= edit_table_row (PersonNote.human_attribute_name(:date_end)),(@person_note.date_end.to_dmy) %>
<%= edit_table_row (PersonNote.human_attribute_name(:amount)),( money_format_zero(@person_note.amount) ) %>
<%= edit_table_row (PersonNote.human_attribute_name(:person_amount_type_id)),( @person_note.person_amount_type_id ? link_to( @person_note.person_amount_type.descrizione, person_amount_type_path(@person_note.person_amount_type_id) ) : nil) %>
<%= edit_table_close %>
<%= show_record_info(@person_note) %>
<%= iconbutton_backtoindex person_notes_path, "Vai all'elenco", @filter_params %>
<%= iconbutton_edit edit_person_note_path(@person_note, @filter_params), 'Modifica questa nota' %>
<%= iconbutton_delete @person_note, 'Elimina questa nota' %>