Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision edcb119d

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

  • ID edcb119d9dd34a3c6b72b0ff6fbd2489022f7a2a
  • Vorgänger c05f59fd
  • Nachfolger d9b2b818

Neues Design 2019 Standard-Code templates/webpages/simple_system_setting/_language_form.html

Unterschiede anzeigen:

templates/webpages/simple_system_setting/_language_form.html
1
<table>
2
 <tr>
3
  <th align="right">[% LxERP.t8("Language") %]</th>
4
  <td>[% L.input_tag("object.description", SELF.object.description, style=style, "data-validate"="required", "data-title"=LxERP.t8("Language")) %]</td>
5
 <tr>
6
 <tr>
7
  <th align="right">[% LxERP.t8("Template Code") %]</th>
8
  <td>[% L.input_tag("object.template_code", SELF.object.template_code, style=style) %]</td>
9
 </tr>
10
 <tr>
11
  <th align="right">[% LxERP.t8("Article Code") %]</th>
12
  <td>[% L.input_tag("object.article_code", SELF.object.article_code, style=style) %]</td>
13
 </tr>
14
 <tr>
15
  <th align="right">[% LxERP.t8("Number Format") %]</th>
16
  <td>[% L.select_tag("object.output_numberformat", SELF.numberformats, default=SELF.object.output_numberformat, with_empty=1, empty_title=LxERP.t8("use program settings"), style=style) %]</td>
17
 </tr>
18
 <tr>
19
  <th align="right">[% LxERP.t8("Date Format") %]</th>
20
  <td>[% L.select_tag("object.output_dateformat", SELF.dateformats, default=SELF.object.output_dateformat, with_empty=1, empty_title=LxERP.t8("use program settings"), style=style) %]</td>
21
 </tr>
22
 <tr>
23
  <th align="right">[% LxERP.t8("Long Dates") %]</th>
24
  <td>[% L.yes_no_tag("object.output_longdates", SELF.object.output_longdates, style=style) %]</td>
25
 </tr>
26
</table>
27 1
[% USE LxERP %]
28 2
[% USE L %]
29 3
[% USE HTML %]
4

  
5
<div class="wrapper">
6
  <table class="tbl-horizontal">
7
    <tbody>
8
      <tr>
9
        <th> [% LxERP.t8("Language") %] </th>
10
        <td> [% L.input_tag("object.description", SELF.object.description, class='wi-wider', "data-validate"="required", "data-title"=LxERP.t8("Language")) %] </td>
11
      </tr>
12
      <tr>
13
        <th> [% LxERP.t8("Template Code") %] </th>
14
        <td> [% L.input_tag("object.template_code", SELF.object.template_code, class='wi-wider') %] </td>
15
      </tr>
16
      <tr>
17
        <th> [% LxERP.t8("Article Code") %] </th>
18
        <td> [% L.input_tag("object.article_code", SELF.object.article_code, class='wi-wider') %] </td>
19
      </tr>
20
      <tr>
21
        <th> [% LxERP.t8("Number Format") %] </th>
22
        <td> [% L.select_tag("object.output_numberformat", SELF.numberformats, default=SELF.object.output_numberformat, with_empty=1, empty_title=LxERP.t8("use program settings"), class='wi-wider') %] </td>
23
      </tr>
24
      <tr>
25
        <th> [% LxERP.t8("Date Format") %] </th>
26
        <td> [% L.select_tag("object.output_dateformat", SELF.dateformats, default=SELF.object.output_dateformat, with_empty=1, empty_title=LxERP.t8("use program settings"), class='wi-wider') %] </td>
27
      </tr>
28
      <tr>
29
        <th> [% LxERP.t8("Long Dates") %] </th>
30
        <td> [% L.yes_no_tag("object.output_longdates", SELF.object.output_longdates, class='wi-wider') %] </td>
31
      </tr>
32
    </tbody>
33
  </table>
34
</div>

Auch abrufbar als: Unified diff