diff options
| author | Aymeric Augustin | 2013-11-01 17:52:04 +0100 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-11-01 17:52:04 +0100 | 
| commit | 3003c95626617c5c5331ddf10373e867b6610a63 (patch) | |
| tree | 88441050d1546527d4befd64ae10b4c56e8f96dc /debug_toolbar | |
| parent | d3c0ca8b14682b399248db19b1ac329f39b17b89 (diff) | |
| download | django-debug-toolbar-3003c95626617c5c5331ddf10373e867b6610a63.tar.bz2 | |
Make help text a bit more helpful.
Diffstat (limited to 'debug_toolbar')
| -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 d1dd0d1..4068ced 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -14,7 +14,7 @@  			{% endif %}  			{% for panel in panels %}  				<li class="djDebugPanelButton"> -					<input type="checkbox" data-cookie="{{ panel.dom_id }}"{% if panel.enabled %} checked="checked"{% endif %} title="{% trans "Toogle Panel" %}" /> +					<input type="checkbox" data-cookie="{{ panel.dom_id }}"{% if panel.enabled %} checked="checked"{% endif %} title="{% trans "Toogle Panel for next and successive requests" %}" />  					{% if panel.has_content and panel.enabled %}  						<a href="{{ panel.url|default:"#" }}" title="{{ panel.title }}" class="{{ panel.dom_id }}">  					{% else %} | 
