5 <h1>[% HTML.escape(title) %]</h1>
9 [% INCLUDE 'common/flash.html' %]
11 [% IF !SELF.all_clients.size %]
12 <div class="message message_error">
13 <b>[% LxERP.t8("Error") %]:</b> [% LxERP.t8("No clients have been created yet.") %]
19 [% L.hidden_tag("action", 'Admin/dispatch') %]
20 [% L.hidden_tag("printer.id", SELF.printer.id) %]
22 <table class="tbl-horizontal">
25 <th>[% LxERP.t8('Client') %]</th>
26 <td>[% L.select_tag("client.id", SELF.all_clients, default=SELF.client.id, title_key='name') %]</td>
29 <th>[% LxERP.t8('Printer Description') %]</th>
30 <td>[% L.input_tag("printer.printer_description", SELF.printer.printer_description, size=30, class="initial_focus") %]</td>
33 <th>[% LxERP.t8('Printer Command') %]</th>
34 <td>[% L.input_tag("printer.printer_command", SELF.printer.printer_command, size=30) %]</td>
37 <th>[% LxERP.t8('Template Code') %]</th>
38 <td>[% L.input_tag("printer.template_code", SELF.printer.template_code, size=8) %]</td>
44 <a href="[% SELF.url_for(action='list_printers', 'client.id'=SELF.client.id) %]" class="button neutral">[% LxERP.t8("Back") %]</a>
45 [% L.submit_tag("action_save_printer", LxERP.t8("Save"), class="button") %]
46 [% IF SELF.printer.id %]
47 [% L.submit_tag("action_delete_printer", LxERP.t8("Delete"), confirm=LxERP.t8("Are you sure?")) %]
53 </div><!-- /.wrapper -->