Fixes vim mode line.
[platal.git] / templates / googleapps / admin.job.tpl
CommitLineData
0089e594
VZ
1{**************************************************************************}
2{* *}
c441aabe 3{* Copyright (C) 2003-2014 Polytechnique.org *}
0089e594
VZ
4{* http://opensource.polytechnique.org/ *}
5{* *}
6{* This program is free software; you can redistribute it and/or modify *}
7{* it under the terms of the GNU General Public License as published by *}
8{* the Free Software Foundation; either version 2 of the License, or *}
9{* (at your option) any later version. *}
10{* *}
11{* This program is distributed in the hope that it will be useful, *}
12{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14{* GNU General Public License for more details. *}
15{* *}
16{* You should have received a copy of the GNU General Public License *}
17{* along with this program; if not, write to the Free Software *}
18{* Foundation, Inc., *}
19{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
20{* *}
21{**************************************************************************}
22
23<h1>Requête de la queue Google Apps</h1>
24
25{if $job}
26<table class="bicol">
27 <col width="50%" />
28 <col width="50%" />
29 <tr>
30 <th style="text-align: left" colspan="2">Queue id: {$job.q_id}</th>
31 </tr>
32
33 <tr class="impair">
34 <td class="titre">Propriétaire</td><td>{if $job.q_owner}{$job.q_owner}{else}<em>none</em>{/if}</td>
35 </tr>
36 <tr class="impair">
37 <td class="titre">Destinataire</td><td>{if $job.q_recipient}{$job.q_recipient}{else}<em>none</em>{/if}</td>
38 </tr>
39
40 <tr class="pair">
41 <td class="titre">Statut</td><td><code>{$job.p_status}</code></td>
42 </tr>
43 <tr class="pair">
44 <td class="titre">Priorité</td><td><code>{$job.p_priority}</code></td>
45 </tr>
46 <tr class="pair">
6bb2f79a 47 <td class="titre">Requête administrateur&nbsp;?</td><td>{if $job.p_admin_request}oui{else}non{/if}</td>
0089e594
VZ
48 </tr>
49
50 <tr class="impair">
51 <td class="titre">Entrée dans la queue</td><td>{$job.p_entry_date}</td>
52 </tr>
53 <tr class="impair">
54 <td class="titre">Date d'activation</td><td>{$job.p_notbefore_date}</td>
55 </tr>
56 <tr class="impair">
57 <td class="titre">Début de traitement</td><td>{if $job.p_start_date}{$job.p_start_date}{else}<em>none</em>{/if}</td>
58 </tr>
59 <tr class="impair">
60 <td class="titre">Fin de traitement</td><td>{if $job.p_end_date}{$job.p_end_date}{else}<em>none</em>{/if}</td>
61 </tr>
62
63 <tr class="pair">
64 <td class="titre">Erreurs récupérables</td><td>{$job.r_softfail_count}</td>
65 </tr>
66 <tr class="pair">
67 <td class="titre">Dernière erreur récupérable</td><td><code>{if $job.r_softfail_date}{$job.r_softfail_date}{else}<em>none</em>{/if}</code></td>
68 </tr>
69 <tr class="pair">
70 <td class="titre">Résultat du traitement</td><td><code>{if $job.r_result}{$job.r_result}{else}<em>none</em>{/if}</code></td>
71 </tr>
72
73 <tr class="impair">
74 <td class="titre">Type de requête</td><td><code>{$job.j_type}</code></td>
75 </tr>
76 <tr class="impair">
77 <td class="titre">Paramètres</td><td><pre>{$job.decoded_parameters}</pre></td>
78 </tr>
79</table>
80{else}
81<p><strong>Aucune requête n'a été trouvée.</strong></p>
82{/if}
83
84<p>Retourner à la <a href="admin/googleapps">page d'administration de Google Apps</a>.</p>
85
448c8cdc 86{* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}