6 <h1>[% FORM.title %]</h1>
8 [% INCLUDE 'common/flash.html' %]
12 <table id="background_job_history_details" class="background_job_details">
15 <th>[% LxERP.t8('Current status') %]</th>
17 [% IF SELF.task_server.is_running %]
18 [% LxERP.t8('running') %]
20 [% LxERP.t8('not running') %]
24 [% IF last_command_output %]
26 <th>[% LxERP.t8('Last command output') %]</th>
27 <td><pre>[% HTML.escape(last_command_output) %]</pre></td>
33 <form id="form" method="post" action="controller.pl">
34 [% P.hidden_tag("action", "TaskServer/" _ (SELF.task_server.is_running ? "stop" : "start")) %]