8  [% IF ( SELF.order.phone_notes && SELF.order.phone_notes.size ) %]
 
  11       <th class="listheading">[% 'Subject' | $T8 %]</th>
 
  12       <th class="listheading">[% 'Created on' | $T8 %]</th>
 
  13       <th class="listheading">[% 'Created by' | $T8 %]</th>
 
  16     [%- FOREACH row = SELF.order.phone_notes %]
 
  18        <td>[% P.link_tag('#', row.subject, onclick="kivi.Order.load_phone_note(" _ HTML.url(row.id) _ ", '" _ HTML.escape(row.subject) _ "', '" _ HTML.escape(row.body) _ "')") %]</td>
 
  19        <td>[% row.itime.to_kivitendo | html %]</td>
 
  20        <td>[% row.employee.safe_name | html %]</td>
 
  26   <h2 id='phone_note_edit_text'>[% 'Add note' | $T8 %]</h2>
 
  28   [% L.hidden_tag('phone_note.id') %]
 
  32       <td valign="right">[% 'Subject' | $T8 %]</td>
 
  33       <td>[% L.input_tag('phone_note.subject', '', size = 50) %]</td>
 
  36       <td valign="right" align="top">[% 'Body' | $T8 %]</td>
 
  37       <td align="top">[% L.textarea_tag('phone_note.body', '', cols = 50 rows = 10) %]</td>
 
  42    [% P.button_tag("kivi.Order.save_phone_note()",   LxERP.t8('Save')) %]
 
  43    [% P.button_tag("kivi.Order.delete_phone_note()", LxERP.t8('Delete'), id = 'phone_note_delete_button', style='display:none') %]
 
  44    [% P.button_tag("kivi.Order.cancel_phone_note()", LxERP.t8('Cancel')) %]