We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f277b9d commit 0cda322Copy full SHA for 0cda322
debug_toolbar/templates/debug_toolbar/base.html
@@ -1,7 +1,11 @@
1
-{% load i18n %}{% load static %}
+{% load i18n static %}
2
+{% block css %}
3
<link rel="stylesheet" href="{% static 'debug_toolbar/css/print.css' %}" media="print">
4
<link rel="stylesheet" href="{% static 'debug_toolbar/css/toolbar.css' %}">
5
+{% endblock %}
6
+{% block js %}
7
<script type="module" src="{% static 'debug_toolbar/js/toolbar.js' %}" async></script>
8
9
<div id="djDebug" class="djdt-hidden" dir="ltr"
10
{% if toolbar.store_id %}data-store-id="{{ toolbar.store_id }}" data-render-panel-url="{% url 'djdt:render_panel' %}"{% endif %}
11
data-default-show="{% if toolbar.config.SHOW_COLLAPSED %}false{% else %}true{% endif %}"
0 commit comments