Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Prefer literal over HTML entity
Literals are easier to read when viewing the source (don't need to
memorize code points). The files are encoded in UTF-8 and all modern
browser support UTF-8, so it is compatible.
  • Loading branch information
jdufresne committed Sep 26, 2020
commit 578c1688e3f01ba6b0467c0fb54eadae2a88c7ac
2 changes: 1 addition & 1 deletion debug_toolbar/templates/debug_toolbar/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="djdt-hidden" id="djDebugToolbar">
<ul id="djDebugPanelList">
{% if toolbar.panels %}
<li><a id="djHideToolBarButton" href="#" title="{% trans "Hide toolbar" %}">{% trans "Hide" %} &#187;</a></li>
<li><a id="djHideToolBarButton" href="#" title="{% trans "Hide toolbar" %}">{% trans "Hide" %} »</a></li>
{% else %}
<li id="djDebugButton">DEBUG</li>
{% endif %}
Expand Down