This file is indexed.

/usr/lib/python2.7/dist-packages/debug_toolbar/templates/debug_toolbar/panels/cache.html is in python-django-debug-toolbar 1:1.0.1-0+nmu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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="toggle">
				<a class="djToggleSwitch" data-toggle-name="cacheMain" data-toggle-id="{{ forloop.counter }}" data-toggle-open="+" data-toggle-close="-" href="javascript:void(0)">+</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="stack">{{ call.trace }}</pre></td>
		</tr>
	{% endfor %}
	</tbody>
</table>
{% endif %}