Added debug_toolbar app to project.
[wolnelektury.git] / apps / debug_toolbar / templates / debug_toolbar / panels / profiler.html
1 <div class="title">
2     Profile Output
3 </div>
4 <p>`profile` module output for the view `{{ module|escape }}.{{ callback|escape }}`</p>
5 <table>
6     <thead>
7         <tr>
8             <th>Calls</th>
9             <th>Total Time (ms)</th>
10             <th>Per Call (ms)</th>
11             <th>Cumulative Time (ms)</th>
12             <th>Per Call (ms)</th>
13             <th>Function</th>
14         </tr>
15     </thead>
16     <tbody>
17         {% for row in function_calls %}
18             <tr class="{% cycle 'row1' 'row2' %}">
19                 <td>{{ row.0 }}</td>
20                 <td>{{ row.1|floatformat:"4" }}</td>
21                 <td>{{ row.2|floatformat:"4" }}</td>
22                 <td>{{ row.3|floatformat:"4" }}</td>
23                 <td>{{ row.4|floatformat:"4" }}</td>
24                 <td>{{ row.5|escape }}</td>
25             </tr>
26         {% endfor %}
27     </tbody>
28 </table>