diff options
| author | Aymeric Augustin | 2014-02-01 09:04:21 +0100 | 
|---|---|---|
| committer | Aymeric Augustin | 2014-02-01 09:04:21 +0100 | 
| commit | 1449c014ed449c7c139e2912b0ebb063b1134c83 (patch) | |
| tree | b7e9c7e1c130d37b44578c2ee36fc93d41d37468 | |
| parent | a714bf5940b03e5b1db87159f5bf37679188131d (diff) | |
| download | django-debug-toolbar-1449c014ed449c7c139e2912b0ebb063b1134c83.tar.bz2 | |
Stop accessing non-existing 'url' attribute.
Fix #536.
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/base.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index 6ceb735..e2ab939 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -21,7 +21,7 @@ if(!window.jQuery) document.write('<scr'+'ipt src="//ajax.googleapis.com/ajax/li  				<li class="djDebugPanelButton">  					<input type="checkbox" data-cookie="djdt{{ panel.panel_id }}" {% if panel.enabled %}checked="checked" title="{% trans "Disable for next and successive requests" %}"{% else %}title="{% trans "Enable for next and successive requests" %}"{% endif %} />  					{% if panel.has_content and panel.enabled %} -						<a href="{{ panel.url|default:"#" }}" title="{{ panel.title }}" class="{{ panel.panel_id }}"> +						<a href="#" title="{{ panel.title }}" class="{{ panel.panel_id }}">  					{% else %}  						<div class="contentless{% if not panel.enabled %} disabled{% endif %}">  					{% endif %} | 
