diff options
| author | Jannis Leidel | 2012-04-07 03:10:10 +0200 |
|---|---|---|
| committer | Jannis Leidel | 2012-04-07 03:10:10 +0200 |
| commit | 963ec339d932d3888f79dea12d3d3a89cbd1f141 (patch) | |
| tree | d57c43f9625cbed2edeb7f583c06aabddb9a463b /debug_toolbar/templates | |
| parent | 12fdf7ea605d3716d6c9127e22a63bcc345d55be (diff) | |
| download | django-debug-toolbar-963ec339d932d3888f79dea12d3d3a89cbd1f141.tar.bz2 | |
Added resolved URL name to the Request var panel. Closes #214.
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 %} |
