1 [% USE HTML %][% USE L %][% USE LxERP %]
3 <h1>[% FORM.title %]</h1>
5 [%- INCLUDE 'common/flash.html' %]
7 <table id="background_job_history_details" class="background_job_details">
10 <th>[%- LxERP.t8('Package name') %]</th>
11 <td>[%- HTML.escape(SELF.history.package_name) %]</td>
15 <th>[%- LxERP.t8('Run at') %]</th>
16 <td>[%- HTML.escape(SELF.history.run_at.to_lxoffice('precision' => 'second')) %]</td>
20 <th>[%- LxERP.t8('Execution status') %]</th>
22 [%- IF SELF.history.status == 'success' %]
23 [%- LxERP.t8('succeeded') %]
24 [%- ELSIF SELF.history.status == 'failed' %]
25 [%- LxERP.t8('failed') %]
27 [%- HTML.escape(SELF.history.status) %]
33 <th>[%- LxERP.t8('Result') %]</th>
34 <td>[%- HTML.escape(SELF.history.result) %]</td>
38 <th>[%- LxERP.t8('Error') %]</th>
39 <td>[% IF SELF.history.error_col %]<pre>[%- HTML.escape(SELF.history.error_col) %]</pre>[%- END %]</td>
43 <th>[%- LxERP.t8('Data') %]</th>
44 <td>[% IF SELF.history.data %]<pre>[%- HTML.escape(SELF.history.data) %]</pre>[%- END %]</td>
50 <a href="[% back_to %]">[%- LxERP.t8('Back') %]</a>