35 lines
952 B
HTML
35 lines
952 B
HTML
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% if debug %}
|
|
{% load ietf_filters %}
|
|
<div id="debug" style="clear: right;">
|
|
<h2>Queries</h2>
|
|
<p>
|
|
{{ sql_queries|length }} Queries ({{ sql_queries|timesum }}s)
|
|
{% ifnotequal sql_queries|length 0 %}
|
|
(<span style="cursor: pointer;" onclick="document.getElementById('debugQueryTable').style.display='';">Show</span>)
|
|
{% endifnotequal %}
|
|
</p>
|
|
<table id="debugQueryTable" style="display: none;">
|
|
<col width="1"></col>
|
|
<col></col>
|
|
<col width="1"></col>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">SQL</th>
|
|
<th scope="col">Time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for query in sql_queries %}
|
|
<tr class="{% cycle odd,even %}">
|
|
<td>{{ forloop.counter }}</td>
|
|
<td>{{ query.sql|expand_comma|escape }}</td>
|
|
<td>{{ query.time }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endif %}
|