diff options
| author | Aymeric Augustin | 2013-11-15 20:14:40 +0100 |
|---|---|---|
| committer | Aymeric Augustin | 2013-11-15 20:33:51 +0100 |
| commit | 70d3aa1b8c12d614f2ca1b1b550bb605d8c8a506 (patch) | |
| tree | 00df40543a7e7a3b509dfb3bc2c9efb1f3736e05 /debug_toolbar/templates | |
| parent | 5f54e2d88a12ec7fa06bd2a9dd54e1af2f0b50f7 (diff) | |
| download | django-debug-toolbar-70d3aa1b8c12d614f2ca1b1b550bb605d8c8a506.tar.bz2 | |
Make panels behave more like Django middleware.
Diffstat (limited to 'debug_toolbar/templates')
| -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 b2ea63e..19b32cf 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -20,7 +20,7 @@ if(!window.jQuery) document.write('<scr'+'ipt src="{{ STATIC_URL }}debug_toolbar {% 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 for next and successive requests" %}" /> + <input type="checkbox" data-cookie="{{ panel.dom_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.dom_id }}"> {% else %} |
