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