aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-24 11:00:43 +0100
committerAymeric Augustin2013-11-24 11:01:44 +0100
commite7692b33ca7fd3f7704d283d6b1368cdea198d59 (patch)
tree57d6954f16cd5b7b4b04331cf49eafc72e602137 /debug_toolbar/templates
parenta8a98ddde93d1427d2c431cb3f0b18cdfe87616a (diff)
downloaddjango-debug-toolbar-e7692b33ca7fd3f7704d283d6b1368cdea198d59.tar.bz2
Rename storage to store to avoid conflicting with Django terminology.
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html
index 59e50a4..119e713 100644
--- a/debug_toolbar/templates/debug_toolbar/base.html
+++ b/debug_toolbar/templates/debug_toolbar/base.html
@@ -9,7 +9,7 @@ if(!window.jQuery) document.write('<scr'+'ipt src="//ajax.googleapis.com/ajax/li
<script src="{{ STATIC_URL }}debug_toolbar/js/jquery.cookie.js"></script>
<script src="{{ STATIC_URL }}debug_toolbar/js/toolbar.js"></script>
<div id="djDebug" style="display:none;" dir="ltr"
- data-storage-id="{{ toolbar.storage_id }}" data-render-panel-url="{% url 'djdt:render_panel' %}"
+ data-store-id="{{ toolbar.store_id }}" data-render-panel-url="{% url 'djdt:render_panel' %}"
{{ toolbar.config.ROOT_TAG_ATTRS|safe }}>
<div style="display:none;" id="djDebugToolbar">
<ul id="djDebugPanelList">
@@ -53,7 +53,7 @@ if(!window.jQuery) document.write('<scr'+'ipt src="//ajax.googleapis.com/ajax/li
</div>
<div class="djDebugPanelContent">
<div class="scroll">
- {% if not toolbar.storage_id %}{{ panel.content }}{% endif %}
+ {% if not toolbar.store_id %}{{ panel.content }}{% endif %}
</div>
</div>
</div>