Anpassungen für das Hosting bei Djangoeurope und damit verbundenen Versionen Django 1.8 und Python 2.7
This commit is contained in:
committed by
Christian Berg
parent
cb4b15b3c6
commit
b96b485b61
69
templates/debug_toolbar/panels/cache.html
Normal file
69
templates/debug_toolbar/panels/cache.html
Normal file
@@ -0,0 +1,69 @@
|
||||
{% load i18n %}
|
||||
<h4>{% trans "Summary" %}</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{% trans "Total calls" %}</th>
|
||||
<th>{% trans "Total time" %}</th>
|
||||
<th>{% trans "Cache hits" %}</th>
|
||||
<th>{% trans "Cache misses" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{{ total_calls }}</td>
|
||||
<td>{{ total_time }} ms</td>
|
||||
<td>{{ hits }}</td>
|
||||
<td>{{ misses }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h4>{% trans "Commands" %}</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
{% for name in counts.keys %}
|
||||
<th>{{ name }}</th>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
{% for value in counts.values %}
|
||||
<td>{{ value }}</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{% if calls %}
|
||||
<h4>{% trans "Calls" %}</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">{% trans "Time (ms)" %}</th>
|
||||
<th>{% trans "Type" %}</th>
|
||||
<th>{% trans "Arguments" %}</th>
|
||||
<th>{% trans "Keyword arguments" %}</th>
|
||||
<th>{% trans "Backend" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for call in calls %}
|
||||
<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}" id="cacheMain_{{ forloop.counter }}">
|
||||
<td class="djdt-toggle">
|
||||
<a class="djToggleSwitch" data-toggle-name="cacheMain" data-toggle-id="{{ forloop.counter }}" data-toggle-open="+" data-toggle-close="-" href>+</a>
|
||||
</td>
|
||||
<td>{{ call.time|floatformat:"4" }}</td>
|
||||
<td>{{ call.name|escape }}</td>
|
||||
<td>{{ call.args|escape }}</td>
|
||||
<td>{{ call.kwargs|escape }}</td>
|
||||
<td>{{ call.backend }}</td>
|
||||
</tr>
|
||||
<tr class="djUnselected djDebugHoverable {% cycle 'djDebugOdd' 'djDebugEven' %} djToggleDetails_{{ forloop.counter }}" id="cacheDetails_{{ forloop.counter }}">
|
||||
<td colspan="1"></td>
|
||||
<td colspan="5"><pre class="djdt-stack">{{ call.trace }}</pre></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user