Skip to content

Commit 8eacd07

Browse files
authored
Merge branch 'master' into html5
2 parents bf0f40a + 0940159 commit 8eacd07

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

debug_toolbar/templates/debug_toolbar/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles %}
1+
{% load i18n %}{% load static %}
22
<link rel="stylesheet" href="{% static 'debug_toolbar/css/print.css' %}" type="text/css" media="print">
33
<link rel="stylesheet" href="{% static 'debug_toolbar/css/toolbar.css' %}" type="text/css">
44
{% if toolbar.config.JQUERY_URL %}

debug_toolbar/templates/debug_toolbar/panels/profiling.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles %}
1+
{% load i18n %}{% load static %}
22
<table width="100%">
33
<thead>
44
<tr>

debug_toolbar/templates/debug_toolbar/panels/sql.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n l10n %}{% load static from staticfiles %}
1+
{% load i18n l10n %}{% load static %}
22
<div class="djdt-clearfix">
33
<ul class="djdt-stats">
44
{% for alias, info in databases %}

debug_toolbar/templates/debug_toolbar/panels/sql_explain.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles %}
1+
{% load i18n %}{% load static %}
22
<div class="djDebugPanelTitle">
33
<a class="djDebugClose djDebugBack" href=""></a>
44
<h3>{% trans "SQL explained" %}</h3>

debug_toolbar/templates/debug_toolbar/panels/sql_profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles %}
1+
{% load i18n %}{% load static %}
22
<div class="djDebugPanelTitle">
33
<a class="djDebugClose djDebugBack" href=""></a>
44
<h3>{% trans "SQL profiled" %}</h3>

debug_toolbar/templates/debug_toolbar/panels/sql_select.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles %}
1+
{% load i18n %}{% load static %}
22
<div class="djDebugPanelTitle">
33
<a class="djDebugClose djDebugBack" href=""></a>
44
<h3>{% trans "SQL selected" %}</h3>

debug_toolbar/templates/debug_toolbar/panels/staticfiles.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles%}
1+
{% load i18n %}
22

33
<h4>{% blocktrans count staticfiles_dirs|length as dirs_count %}Static file path{% plural %}Static file paths{% endblocktrans %}</h4>
44
{% if staticfiles_dirs %}

debug_toolbar/templates/debug_toolbar/panels/templates.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles %}
1+
{% load i18n %}{% load static %}
22
<h4>{% blocktrans count template_dirs|length as template_count %}Template path{% plural %}Template paths{% endblocktrans %}</h4>
33
{% if template_dirs %}
44
<ol>

debug_toolbar/templates/debug_toolbar/panels/timer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n %}{% load static from staticfiles %}
1+
{% load i18n %}{% load static %}
22
<h4>{% trans "Resource usage" %}</h4>
33
<table>
44
<colgroup>

example/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
url(r'^jquery/$', TemplateView.as_view(template_name='jquery/index.html')),
99
url(r'^mootools/$', TemplateView.as_view(template_name='mootools/index.html')),
1010
url(r'^prototype/$', TemplateView.as_view(template_name='prototype/index.html')),
11-
url(r'^admin/', include(admin.site.urls)),
11+
url(r'^admin/', admin.site.urls),
1212
]
1313

1414
if settings.DEBUG:

0 commit comments

Comments
 (0)