mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-05 21:20:12 -06:00
I noticed some trailing whitespace has crept into these files. It wasn't caught by `pycodestyle` because that only checks Python files. Ideally we'd add a linter that catches these, but I didn't want to take the time to configure one right now, I just want my editor to stop flagging these while I'm working on trying to upgrade `jquery` versions. Long term, we'll probably want a meta-linter like `prettier` or whatever the newest kid on the block is.
25 lines
753 B
HTML
25 lines
753 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>
|