Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision cd2ec1b3

Von Hans P. Schlaepfer vor mehr als 4 Jahren hinzugefügt

  • ID cd2ec1b3cfc7f09d9d53935d36bc960b94451ab4
  • Vorgänger e5668fc1
  • Nachfolger 5c9e846c

Neues Design 2019 Standard-Code templates/webpages/admin/edit_printer.html

Unterschiede anzeigen:

templates/webpages/admin/edit_printer.html
[% USE HTML %]
[% USE L %]
<h1>[% HTML.escape(title) %]</h1>
<div class="wrapper">
[% INCLUDE 'common/flash.html' %]
[% IF !SELF.all_clients.size %]
<div class="error">
[% LxERP.t8("Error") %]:
[% LxERP.t8("No clients have been created yet.") %]
<div class="message message_error">
<b>[% LxERP.t8("Error") %]:</b> [% LxERP.t8("No clients have been created yet.") %]
</div>
[%- ELSE %]
<h1>[% HTML.escape(title) %]</h1>
[% ELSE %]
<form method="post">
[% L.hidden_tag("action", 'Admin/dispatch') %]
[% L.hidden_tag("printer.id", SELF.printer.id) %]
<table>
<tr>
<th align="right">[% LxERP.t8('Client') %]</th>
<td>[% L.select_tag("client.id", SELF.all_clients, default=SELF.client.id, title_key='name') %]</td>
<tr>
<tr>
<th align="right">[% LxERP.t8('Printer Description') %]</th>
<td>[% L.input_tag("printer.printer_description", SELF.printer.printer_description, size=30, class="initial_focus") %]</td>
<tr>
<tr>
<th align="right">[% LxERP.t8('Printer Command') %]</th>
<td>[% L.input_tag("printer.printer_command", SELF.printer.printer_command, size=30) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Template Code') %]</th>
<td>[% L.input_tag("printer.template_code", SELF.printer.template_code, size=8) %]</td>
</tr>
</table>
<p>
<a href="[% SELF.url_for(action='list_printers', 'client.id'=SELF.client.id) %]">[% LxERP.t8("Back") %]</a>
[% L.submit_tag("action_save_printer", LxERP.t8("Save")) %]
[%- IF SELF.printer.id %]
[% L.submit_tag("action_delete_printer", LxERP.t8("Delete"), confirm=LxERP.t8("Are you sure?")) %]
[%- END %]
</p>
[% L.hidden_tag("action", 'Admin/dispatch') %]
[% L.hidden_tag("printer.id", SELF.printer.id) %]
<table class="tbl-horizontal">
<tbody>
<tr>
<th>[% LxERP.t8('Client') %]</th>
<td>[% L.select_tag("client.id", SELF.all_clients, default=SELF.client.id, title_key='name') %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Printer Description') %]</th>
<td>[% L.input_tag("printer.printer_description", SELF.printer.printer_description, size=30, class="initial_focus") %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Printer Command') %]</th>
<td>[% L.input_tag("printer.printer_command", SELF.printer.printer_command, size=30) %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Template Code') %]</th>
<td>[% L.input_tag("printer.template_code", SELF.printer.template_code, size=8) %]</td>
</tr>
</tbody>
</table>
<div class="buttons">
<a href="[% SELF.url_for(action='list_printers', 'client.id'=SELF.client.id) %]" class="button neutral">[% LxERP.t8("Back") %]</a>
[% L.submit_tag("action_save_printer", LxERP.t8("Save"), class="button") %]
[% IF SELF.printer.id %]
[% L.submit_tag("action_delete_printer", LxERP.t8("Delete"), confirm=LxERP.t8("Are you sure?")) %]
[% END %]
</div>
</form>
</div><!-- /.wrapper -->
[% END %]

Auch abrufbar als: Unified diff