Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision b8cc358b

Von Hans Peter Schlaepfer vor mehr als 5 Jahren hinzugefügt

  • ID b8cc358bade9ec18de2e581f9de0523b4126ae46
  • Vorgänger 456cec19
  • Nachfolger 3fd396be

Neues kivitendo Design restliche Aenderungen in templates/webpages/b*

Dateien in background_job/* bankimport/* bp/* und buchungsgruppen/*

Unterschiede anzeigen:

templates/webpages/background_job/form.html
1
[% USE HTML %][% USE L %][% USE LxERP %]
1
[% USE HTML %]
2
[% USE L %]
3
[% USE LxERP %]
2 4

  
3
 <h1>[% FORM.title %]</h1>
5
<h1>[% FORM.title %]</h1>
4 6

  
5
[%- INCLUDE 'common/flash.html' %]
7
[% INCLUDE 'common/flash.html' %]
6 8

  
7
 <form method="post" action="controller.pl" id="form">
9
<form method="post" action="controller.pl" id="form">
8 10
  [% L.hidden_tag("id", SELF.background_job.id) %]
9 11
  [% L.hidden_tag("back_to", SELF.back_to) %]
10 12

  
11 13
  <table>
12
   <tr>
13
    <th align="right">[%- LxERP.t8('Active') %]</th>
14
    <td>[% L.yes_no_tag("background_job.active", SELF.background_job.active) %]</td>
15
   </tr>
16

  
17
   <tr>
18
    <th align="right">[%- LxERP.t8('Execution type') %]</th>
19
    <td>
20
      [% L.select_tag('background_job.type', [
21
                [ 'once', LxERP.t8('one-time execution') ],
22
                [ 'interval', LxERP.t8('repeated execution') ]
23
              ],
24
              'default' = SELF.background_job.type) %]
25
    </td>
26
   </tr>
27

  
28
   <tr>
29
    <th align="right">[%- LxERP.t8('Package name') %]</th>
30
    <td>[% L.select_tag("background_job.package_name", JOB_CLASSES, 'default' => SELF.background_job.package_name) %]</td>
31
   </tr>
32

  
33
   <tr>
34
    <th align="right">[%- LxERP.t8('Execution schedule') %]</th>
35
    <td>[% L.input_tag("background_job.cron_spec", SELF.background_job.cron_spec, 'size' => 40) %]</td>
36
   </tr>
37

  
38
   <tr>
39
    <th align="right" valign="top">[%- LxERP.t8('Data') %]</th>
40
    <td valign="top">[% L.textarea_tag("background_job.data", SELF.background_job.data, 'cols' => 80, 'rows' => 10) %]</td>
41
   </tr>
42

  
14
    <tbody>
15
       <tr>
16
        <th>[% LxERP.t8('Active') %]</th>
17
        <td>[% L.yes_no_tag("background_job.active", SELF.background_job.active) %]</td>
18
       </tr>
19
       <tr>
20
        <th>[% LxERP.t8('Execution type') %]</th>
21
        <td>[% 
22
          L.select_tag('background_job.type', [
23
            [ 'once', LxERP.t8('one-time execution') ],
24
            [ 'interval', LxERP.t8('repeated execution') ]
25
          ],
26
          'default' = SELF.background_job.type) 
27
        %]</td>
28
       </tr>
29
       <tr>
30
        <th>[% LxERP.t8('Package name') %]</th>
31
        <td>[% L.select_tag("background_job.package_name", JOB_CLASSES, 'default' => SELF.background_job.package_name) %]</td>
32
       </tr>
33
       <tr>
34
        <th>[% LxERP.t8('Execution schedule') %]</th>
35
        <td>[% L.input_tag("background_job.cron_spec", SELF.background_job.cron_spec, 'size' => 40) %]</td>
36
       </tr>
37
       <tr>
38
        <th>[% LxERP.t8('Data') %]</th>
39
        <td>[% L.textarea_tag("background_job.data", SELF.background_job.data, 'cols' => 80, 'rows' => 10) %]</td>
40
       </tr>
41
    </tbody>
43 42
  </table>
44
 </form>
43

  
44
</form>

Auch abrufbar als: Unified diff