fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fb253d6f16810f30f9dbb2bac139514b2e02f6ca
[wolnelektury.git]
/
apps
/
debug_toolbar
/
templates
/
debug_toolbar
/
panels
/
headers.html
1
<div class="title">
2
Request Headers
3
</div>
4
<table>
5
<thead>
6
<tr>
7
<th>Key</th>
8
<th>Value</th>
9
</tr>
10
</thead>
11
<tbody>
12
{% for key, value in headers.iteritems %}
13
<tr class="{% cycle 'row1' 'row2' %}">
14
<td>{{ key|escape }}</td>
15
<td>{{ value|escape }}</td>
16
</tr>
17
{% endfor %}
18
</tbody>
19
</table>