245f0629dbfb0963c24ffdff53bf3c728f6f0144
[kivitendo-erp.git] / templates / webpages / bank_transactions / _template_list.html
1 [%- USE HTML -%][%- USE LxERP -%][%- USE P -%]
2
3 [% IF TEMPLATES_AP.size %]
4  [% LxERP.t8('AP template suggestions') %]:
5  <table>
6   <thead>
7    <tr>
8     <th class="listheading">[% LxERP.t8('Description') %]</th>
9     <th class="listheading">[% LxERP.t8('Vendor') %]</th>
10     <th class="listheading">[% LxERP.t8('Employee') %]</th>
11     <th class="listheading">[% LxERP.t8('Template date') %]</th>
12    </tr>
13   </thead>
14
15   <tbody>
16    [% FOREACH template = TEMPLATES_AP %]
17     <tr class="listrow">
18      <td>[% P.link_tag(SELF.load_ap_record_template_url(template), template.template_name) %]</td>
19      <td>[% HTML.escape(template.vendor.name) %]</td>
20      <td>[% HTML.escape(template.employee.name || template.employee.login) %]</td>
21      <td>[% HTML.escape(template.itime_as_date) %]</td>
22     </tr>
23    [% END %]
24   </tbody>
25  </table>
26 [% ELSE %]
27  <p class="message_hint">[% LxERP.t8('No AP template was found.') %]</p>
28 [% END %]
29
30 [% IF TEMPLATES_GL.size %]
31  [% LxERP.t8('GL template suggestions') %]:
32  <table>
33   <thead>
34    <tr>
35     <th class="listheading">[% LxERP.t8('Description') %]</th>
36     <th class="listheading">[% LxERP.t8('Reference') %]</th>
37     <th class="listheading">[% LxERP.t8('Employee') %]</th>
38     <th class="listheading">[% LxERP.t8('Template date') %]</th>
39    </tr>
40   </thead>
41
42   <tbody>
43    [% FOREACH template = TEMPLATES_GL %]
44     <tr class="listrow">
45      <td>[% P.link_tag(SELF.load_gl_record_template_url(template), template.template_name) %]</td>
46      <td>[% HTML.escape(template.reference) %]</td>
47      <td>[% HTML.escape(template.employee.name || template.employee.login) %]</td>
48      <td>[% HTML.escape(template.itime_as_date) %]</td>
49     </tr>
50    [% END %]
51   </tbody>
52  </table>
53 [% ELSE %]
54  <p class="message_hint">[% LxERP.t8('No GL template was found.') %]</p>
55 [% END %]