diff options
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/request_vars.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html index 07c223a..057f4de 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html +++ b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html @@ -5,6 +5,7 @@ <thead> <tr> <th>{% trans 'View Function' %}</th> + <th>{% trans 'URL Name' %}</th> <th>{% trans 'args' %}</th> <th>{% trans 'kwargs' %}</th> </tr> @@ -12,6 +13,7 @@ <tbody> <tr> <td>{{ view_func }}</td> + <td>{{ view_urlname }}</td> <td>{{ view_args|default:"None" }}</td> <td> {% if view_kwargs.items %} |
