We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bbf1d3 commit eee97f1Copy full SHA for eee97f1
1 file changed
debug_toolbar/templates/panels/request.html
@@ -1,14 +1,16 @@
1
-<h4>Endpoint information</h4>
+<h4>Route information</h4>
2
3
<table>
4
<thead>
5
<tr>
6
<th>Name</th>
7
+ <th>Endpoint</th>
8
<th>Path params</th>
9
</tr>
10
</thead>
11
<tbody>
12
13
+ <td>{{ request.route.name }}</td>
14
<td>{{ get_name_from_obj(request.endpoint) }}</td>
15
<td>
16
{% if request.path_params %}
@@ -36,7 +38,7 @@ <h4>Endpoint information</h4>
36
38
37
39
40
- {% for key, value in variables %}
41
+ {% for key, value in variables|sort %}
42
43
<td><code>{{ key|pprint }}</code></td>
44
<td><code>{{ value|pprint }}</code></td>
0 commit comments