Administrationsbereich mit Menüsystem versehen
[kivitendo-erp.git] / templates / webpages / admin / list_printers.html
1 [%- USE HTML -%][%- USE LxERP -%][%- USE L -%]
2
3 [% INCLUDE 'common/flash.html' %]
4
5 <h1>[% HTML.escape(title) %]</h1>
6
7 [% IF !SELF.all_clients.size %]
8 <div class="error">
9  [% LxERP.t8("Error") %]:
10  [% LxERP.t8("No clients have been created yet.") %]
11 </div>
12
13 [%- ELSE %]
14
15  <p>
16   [% LxERP.t8("Client to configure the printers for") %]:
17   [% L.select_tag('client.id', SELF.all_clients, id='client_id', title_key='name', default=SELF.client.id) %]
18  </p>
19
20  [%- IF !SELF.all_printers.size %]
21
22   <p>
23    [% LxERP.t8("No printers have been created yet.") %]
24   </p>
25
26  [%- ELSE %]
27
28   <table width="100%">
29    <tr class="listheading">
30     <th>[% LxERP.t8('Description') %]</th>
31     <th>[% LxERP.t8('Printer Command') %]</th>
32     <th>[% LxERP.t8('Template Code') %]</th>
33    </tr>
34
35    [%- FOREACH printer = SELF.all_printers %]
36     <tr valign="top" class="listrow">
37      <td><a href="[% SELF.url_for(action='edit_printer', 'client.id'=SELF.client.id, id=printer.id) %]">[% HTML.escape(printer.printer_description) %]</a></td>
38      <td>[% HTML.escape(printer.printer_command) %]</td>
39      <td>[% HTML.escape(printer.template_code) %]</td>
40     </tr>
41    [%- END %]
42   </table>
43
44  [%- END %]
45
46  <script type="text/javascript">
47 <!--
48   $(function() {
49     $('#client_id').change(function() {
50       window.location.href = "controller.pl?action=Admin/list_printers&client.id=" + $('#client_id').val();
51     });
52   });
53 -->
54  </script>
55
56 [%- END %]