6  [%- IF SAVED_MESSAGE %]
 
   7  <p>[% SAVED_MESSAGE %]</p>
 
  10  <p>[% 'Allow the following users access to my follow-ups:' | $T8 %]</p>
 
  12  <form action="fu.pl" method="post" name="Form">
 
  16      <td class="listheading">[% 'User' | $T8 %]</td>
 
  17      <td class="listheading">[% 'Allow access' | $T8 %]</td>
 
  20     [%- FOREACH row = EMPLOYEES %]
 
  21     [%- UNLESS row.login == login %]
 
  22     <input type="hidden" name="employee_id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
 
  24     <tr class="listrow[% loop.count % 2 %]">
 
  25      <td>[% IF row.name %][% HTML.escape(row.name) %] ([% HTML.escape(row.login) %])[% ELSE %][% HTML.escape(row.login) %][% END %]</td>
 
  27       <input type="radio" id="access_[% HTML.escape(row.id) %]_yes" name="access_[% HTML.escape(row.id) %]" value="1"[% IF row.access %] checked[% END %]>
 
  28       <label for="access_[% HTML.escape(row.id) %]_yes">[% 'Yes' | $T8 %]</label>
 
  29       <input type="radio" id="access_[% HTML.escape(row.id) %]_no" name="access_[% HTML.escape(row.id) %]" value=""[% UNLESS row.access %] checked[% END %]>
 
  30       <label for="access_[% HTML.escape(row.id) %]_no">[% 'No' | $T8 %]</label>
 
  38   <input type="hidden" name="rowcount" value="[% EMPLOYEES.size %]">
 
  39   <input type="hidden" name="save_nextsub" value="save_access_rights">
 
  42    <input type="submit" class="submit" name="action" value="[% 'Save' | $T8 %]">