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