]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/task_server/show.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / task_server / show.html
1 [% USE HTML %]
2 [% USE LxERP %]
3 [% USE L %]
4 [% USE P %]
5
6 <h1>[% FORM.title %]</h1>
7
8 [% INCLUDE 'common/flash.html' %]
9
10 <div class="wrapper">
11
12   <table id="background_job_history_details" class="background_job_details">
13     <tbody>
14       <tr class="listrow0">
15         <th>[% LxERP.t8('Current status') %]</th>
16         <td>
17           [% IF SELF.task_server.is_running %]
18             [% LxERP.t8('running') %]
19           [% ELSE %]
20             [% LxERP.t8('not running') %]
21           [% END %]
22         </td>
23       </tr>
24       [% IF last_command_output %]
25         <tr class="listrow1">
26           <th>[% LxERP.t8('Last command output') %]</th>
27           <td><pre>[% HTML.escape(last_command_output) %]</pre></td>
28         </tr>
29       [% END %]
30     </tbody>
31   </table>
32
33   <form id="form" method="post" action="controller.pl">
34     [% P.hidden_tag("action", "TaskServer/" _ (SELF.task_server.is_running ? "stop" : "start")) %]
35   </form>
36
37 </div>