7df0dee326b3f2564478b98321ad7984148588ca
[platal.git] / templates / backtrace.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2008 Polytechnique.org                             *}
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 {foreach from=$backtraces key=bt_name item=trace}
24 <div class="backtrace">
25   <h1>
26     {if $trace->error}<span style="color: #f00">{/if}
27     ExĂ©cution de {$bt_name}&nbsp;: {$trace->traces|@count} actions en {$trace->totaltime|string_format:"%.3f"}s (hover-me pour la trace)
28     {if $trace->error}</span>{/if}
29   </h1>
30   <div class="hide">
31 {foreach item=query from=$trace->traces}
32 {if $query.data}
33 {assign var=cols value=$query.data[0]|@count}
34 {else}
35 {assign var=cols value=1}
36 {/if}
37 <table class="bicol" style="width: 75%; font-size: smaller; margin-left:2px; margin-top: 3px;">
38   <tr class="impair">
39     <td colspan="{$cols}">
40       <strong>ACTION:</strong>
41       <pre style="padding: 0; margin: 0;">{$query.action}</pre>
42       <br/>
43     </td>
44   </tr>
45   {if $query.error}
46   <tr>
47     <td colspan="{$cols}">
48       <strong style="color: #f00">ERROR:</strong><br />
49       {$query.error|nl2br}
50     </td>
51   </tr>
52   {else}
53   <tr>
54     <td colspan="{$cols}">
55       <strong>INFO:</strong><br />
56       {$query.rows} ligne{if $query.rows > 1}s{/if} en {$query.exectime|string_format:"%.3f"}s
57     </td>
58   </tr>
59   {/if}
60 {if $query.data}
61   <tr>
62     {foreach key=key item=item from=$query.data[0]}
63     <th style="font-size: smaller">{$key}</th>
64     {/foreach}
65   </tr>
66   {foreach item=data_row from=$query.data}
67   <tr class="impair">
68     {foreach item=item from=$data_row}
69     <td class="center" style="font-size: smaller">{$item}</td>
70     {/foreach}
71   </tr>
72   {/foreach}
73 {/if}
74 </table>
75 {/foreach}
76 </div>
77 </div>
78 {/foreach}
79
80 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}