Revision e5c2e6d4
Von Werner Hahn vor 7 Monaten hinzugefügt
templates/webpages/background_job/form.html | ||
---|---|---|
30 | 30 |
<td>[% L.select_tag("background_job.package_name", JOB_CLASSES, 'default' => SELF.background_job.package_name) %]</td> |
31 | 31 |
</tr> |
32 | 32 |
|
33 |
<tr> |
|
34 |
<th align="right">[%- LxERP.t8('Description') %]</th> |
|
35 |
<td>[% L.input_tag("background_job.description", SELF.background_job.description, 'size' => 40) %]</td> |
|
36 |
</tr> |
|
37 |
|
|
33 | 38 |
<tr> |
34 | 39 |
<th align="right">[%- LxERP.t8('Execution schedule') %]</th> |
35 | 40 |
<td>[% L.input_tag("background_job.cron_spec", SELF.background_job.cron_spec, 'size' => 40) %]</td> |
templates/webpages/background_job/list.html | ||
---|---|---|
14 | 14 |
<thead> |
15 | 15 |
<tr class="listheading"> |
16 | 16 |
<th>[% L.sortable_table_header('package_name') %]</th> |
17 |
<th>[% L.sortable_table_header('description') %]</th> |
|
17 | 18 |
<th>[% L.sortable_table_header('type') %]</th> |
18 | 19 |
<th>[% L.sortable_table_header('active') %]</th> |
19 | 20 |
<th>[% L.sortable_table_header('cron_spec') %]</th> |
... | ... | |
30 | 31 |
[%- HTML.escape(background_job.package_name) %] |
31 | 32 |
</a> |
32 | 33 |
</td> |
34 |
<td>[%- HTML.escape(background_job.description) %]</td> |
|
33 | 35 |
<td> |
34 | 36 |
[%- IF background_job.type == 'once' %] |
35 | 37 |
[%- LxERP.t8('one-time execution') %] |
templates/webpages/background_job_history/_filter.html | ||
---|---|---|
12 | 12 |
<th align="right">[% LxERP.t8('Package name') %]</th> |
13 | 13 |
<td>[% L.input_tag('filter.package_name:substr::ilike', filter.package_name_substr__ilike, size = 20) %]</td> |
14 | 14 |
</tr> |
15 |
<tr> |
|
16 |
<th align="right">[% LxERP.t8('Description') %]</th> |
|
17 |
<td>[% L.input_tag('filter.package_name:substr::ilike', filter.description_substr__ilike, size = 20) %]</td> |
|
18 |
</tr> |
|
15 | 19 |
<tr> |
16 | 20 |
<th align="right">[% LxERP.t8('Result') %]</th> |
17 | 21 |
<td>[% L.input_tag('filter.result:substr::ilike', filter.result_substr__ilike, size = 20) %]</td> |
templates/webpages/background_job_history/list.html | ||
---|---|---|
16 | 16 |
<thead> |
17 | 17 |
<tr class="listheading"> |
18 | 18 |
<th>[% L.sortable_table_header('package_name') %]</th> |
19 |
<th>[% L.sortable_table_header('description') %]</th> |
|
19 | 20 |
<th>[% L.sortable_table_header('run_at') %]</th> |
20 | 21 |
<th>[% L.sortable_table_header('status') %]</th> |
21 | 22 |
<th>[% L.sortable_table_header('result') %]</th> |
... | ... | |
31 | 32 |
[%- HTML.escape(entry.package_name) %] |
32 | 33 |
</a> |
33 | 34 |
</td> |
35 |
<td>[%- HTML.escape(entry.description) %]</td> |
|
34 | 36 |
<td>[%- HTML.escape(entry.run_at.to_lxoffice('precision' => 'second')) %]</td> |
35 | 37 |
<td> |
36 | 38 |
[%- IF entry.status == 'success' %] |
templates/webpages/background_job_history/show.html | ||
---|---|---|
11 | 11 |
<td>[%- HTML.escape(SELF.history.package_name) %]</td> |
12 | 12 |
</tr> |
13 | 13 |
|
14 |
<tr class="listrow0"> |
|
15 |
<th>[%- LxERP.t8('Description') %]</th> |
|
16 |
<td>[%- HTML.escape(SELF.history.description) %]</td> |
|
17 |
</tr> |
|
18 |
|
|
14 | 19 |
<tr class="listrow1"> |
15 | 20 |
<th>[%- LxERP.t8('Run at') %]</th> |
16 | 21 |
<td>[%- HTML.escape(SELF.history.run_at.to_lxoffice('precision' => 'second')) %]</td> |
Auch abrufbar als: Unified diff
BGJ und BGJH in alten Templates 'Description' eingebunden