Templates werden nicht mehr übersetzt gespeichert.
[kivitendo-erp.git] / templates / webpages / fu / report_for_todo_list_master.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  <p>
11   <table width="100%">
12    <tr>
13     <td class="listheading">&nbsp;</td>
14     <td class="listheading">[% 'Follow-Up Date' | $T8 %]</td>
15     <td class="listheading">[% 'Created on' | $T8 %]</td>
16     <td class="listheading">[% 'Subject' | $T8 %]</td>
17     <td class="listheading">[% 'Reference' | $T8 %]</td>
18     <td class="listheading">[% 'Created by' | $T8 %]</td>
19    </tr>
20
21    [%- FOREACH row = FOLLOW_UPS %]
22    <tr class="listrow[% loop.count % 2 %]">
23     <td>
24      <input type="hidden" name="follow_up_id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
25      <input type="checkbox" name="selected_[% loop.count %]" value="1">
26     </td>
27     <td>[% HTML.escape(row.follow_up_date) %]</td>
28     <td>[% HTML.escape(row.created_on) %]</td>
29     <td><a href="[% edit_url %][% HTML.escape(row.id) %]">[% HTML.escape(row.subject) %]</a></td>
30     <td>[% IF row.reference_link %]<a href="[% row.reference_link %]">[% END %][% HTML.escape(row.reference) %][% IF row.reference_link %]</a>[% END %]</td>
31     <td>[% HTML.escape(row.created_by_name) %]</td>
32    </tr>
33    [%- END %]
34   </table>
35  </p>
36
37  <p>
38   <input type="hidden" name="action" value="dispatcher">
39   <input type="submit" class="submit" name="action_finish" value="[% 'Finish' | $T8 %]">
40   <input type="submit" class="submit" name="action_delete" value="[% 'Delete' | $T8 %]">
41  </p>
42 </form>