Revision b8451c6b
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
SL/Controller/BackgroundJobHistory.pm | ||
---|---|---|
88 | 88 |
@filters; |
89 | 89 |
|
90 | 90 |
my %status = ( |
91 |
failed => $::locale->text('failed'),
|
|
91 |
failure => $::locale->text('failed'),
|
|
92 | 92 |
success => $::locale->text('succeeded'), |
93 | 93 |
); |
94 | 94 |
push @filter_strings, $status{ $filter->{'status:eq_ignore_empty'} } if $filter->{'status:eq_ignore_empty'}; |
templates/webpages/background_job_history/_filter.html | ||
---|---|---|
22 | 22 |
</tr> |
23 | 23 |
<tr> |
24 | 24 |
<th align="right">[% LxERP.t8('Status') %]</th> |
25 |
<td>[% L.select_tag('filter.status:eq_ignore_empty', [ [ '', '' ], [ 'failed', LxERP.t8('failed') ], [ 'success', LxERP.t8('succeeded') ] ], default=filter.status_eq_ignore_empty) %]</td>
|
|
25 |
<td>[% L.select_tag('filter.status:eq_ignore_empty', [ [ '', '' ], [ 'failure', LxERP.t8('failed') ], [ 'success', LxERP.t8('succeeded') ] ], default=filter.status_eq_ignore_empty) %]</td>
|
|
26 | 26 |
</tr> |
27 | 27 |
<tr> |
28 | 28 |
<th align="right">[% LxERP.t8('Run at') %] [% LxERP.t8('From Date') %]</th> |
Auch abrufbar als: Unified diff
Hintergrundjobhistorie: Status für Fehlschlag richtig benennen