a0683115a772ff69973826131c06cbb539c2f2b3
[kivitendo-erp.git] / templates / webpages / fu / report_for_todo_list.html
1 [%- USE T8 %]
2 [% USE HTML %]
3
4 <div class="listtop">[% 'Unfinished follow-ups' | $T8 %]</div>
5
6 <form action="fu.pl" method="post" name="TODOFollowUpsForm">
7  <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
8  <input type="hidden" name="rowcount" value="[% FOLLOW_UPS.size %]">
9
10   <table width="100%">
11    <tr>
12     <td class="listheading">&nbsp;</td>
13     <td class="listheading">[% 'Follow-Up Date' | $T8 %]</td>
14     <td class="listheading">[% 'Created on' | $T8 %]</td>
15     <td class="listheading">[% 'Subject' | $T8 %]</td>
16     <td class="listheading">[% 'Reference' | $T8 %]</td>
17     <td class="listheading">[% 'Created by' | $T8 %]</td>
18    </tr>
19
20    [%- FOREACH row = FOLLOW_UPS %]
21    <tr class="listrow[% loop.count % 2 %]">
22     <td>
23      <input type="hidden" name="follow_up_id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
24      <input type="checkbox" name="selected_[% loop.count %]" value="1">
25     </td>
26     <td>[% HTML.escape(row.follow_up_date) %]</td>
27     <td>[% HTML.escape(row.created_on) %]</td>
28     <td><a href="[% edit_url | html %][% HTML.escape(row.id) %]">[% HTML.escape(row.subject) %]</a></td>
29     <td>[% IF row.reference_link %]<a href="[% row.reference_link | html %]">[% END %][% HTML.escape(row.reference) %][% IF row.reference_link %]</a>[% END %]</td>
30     <td>[% HTML.escape(row.created_by_name) %]</td>
31    </tr>
32    [%- END %]
33   </table>
34
35  <p>
36   <input type="hidden" name="action" value="dispatcher">
37   <input type="submit" class="submit" name="action_finish" value="[% 'Finish' | $T8 %]">
38   <input type="submit" class="submit" name="action_delete" value="[% 'Delete' | $T8 %]">
39  </p>
40 </form>