mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-06 05:30:12 -06:00
24 lines
752 B
HTML
24 lines
752 B
HTML
<table id="flDebugProfilerTable" class="flDebugTablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th data-sorter="digit">Calls</th>
|
|
<th>Total Time (ms)</th>
|
|
<th>Per Call (ms)</th>
|
|
<th>Cumulative Time (ms)</th>
|
|
<th>Per Call (ms)</th>
|
|
<th data-sorter="text">Function</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in function_calls %}
|
|
<tr class="{{ loop.cycle('flDebugOdd', 'flDebugEven') }}">
|
|
<td>{{ row.ncalls }}</td>
|
|
<td>{{ row.tottime }}</td>
|
|
<td>{{ '%.4f'|format(row.percall) }}</td>
|
|
<td>{{ row.cumtime }}</td>
|
|
<td>{{ '%.4f'|format(row.percall_cum) }}</td>
|
|
<td title="{{ row.filename_long }}">{{ row.filename|escape }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |