Zwei neue Features:
[kivitendo-erp.git] / templates / webpages / fu / report_for_todo_list_master.html
1 [% USE HTML %]
2
3 <div class="listtop"><translate>Unfinished follow-ups</translate></div>
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  <p>
10   <table width="100%">
11    <tr>
12     <td class="listheading">&nbsp;</td>
13     <td class="listheading"><translate>Follow-Up Date</translate></td>
14     <td class="listheading"><translate>Created on</translate></td>
15     <td class="listheading"><translate>Subject</translate></td>
16     <td class="listheading"><translate>Reference</translate></td>
17     <td class="listheading"><translate>Created by</translate></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.escape(row.id) %]">[% HTML.escape(row.subject) %]</a></td>
29     <td>[% IF row.reference_link %]<a href="[% row.reference_link %]">[% 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  </p>
35
36  <p>
37   <input type="hidden" name="action" value="dispatcher">
38   <input type="submit" class="submit" name="action_finish" value="<translate>Finish</translate>">
39   <input type="submit" class="submit" name="action_delete" value="<translate>Delete</translate>">
40  </p>
41 </form>